uui/makefile

16 lines
415 B
Makefile

MAKE_PATH="."
UMAKE_PATH="umake"
.PHONY: all watch debug debug_watch clean lint
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
lint:
@clang-format --dry-run --Werror include/uui/*.hpp include/uui/**/*.hpp src/uui/*.cpp src/uui/**/*.cpp src/test/*.cpp