umake/makefile
Corentin b31e3b8426
Change layout and use watchinotify
* 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)
2026-07-24 01:04:21 +09:00

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