* Change code layout to a flat layout * Remove pyright configuration * Add watchinotify as optional dependency to use the watch option * Fix watch option to watch for all dependencies (headers)
12 lines
216 B
Makefile
12 lines
216 B
Makefile
UMAKE_PATH="umake"
|
|
|
|
.PHONY: all debug clean
|
|
|
|
all:
|
|
@PYTHONPATH=$(UMAKE_PATH) python3 make.py
|
|
|
|
debug:
|
|
@PYTHONPATH=$(UMAKE_PATH) python3 make.py --type debug
|
|
|
|
clean:
|
|
@PYTHONPATH=$(UMAKE_PATH) python3 make.py --clean
|