Initial commit
This commit is contained in:
commit
1571f570bf
6 changed files with 281 additions and 0 deletions
13
makefile
Normal file
13
makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue