Initial commit

This commit is contained in:
Corentin 2020-11-13 21:00:02 +09:00
commit 1571f570bf
6 changed files with 281 additions and 0 deletions

13
makefile Normal file
View file

@ -0,0 +1,13 @@
MAKE_PATH="."
UMAKE_PATH="umake"
.PHONY: all clean
all:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py
debug:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py --type debug
clean:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py --clean