Files
myos/make/debug.mk
T
aynic.os 743e874c59 lol
2021-06-13 02:14:49 +02:00

17 lines
275 B
Makefile

##
# DEBUG
# target debug: Print more informations
.PHONY: debug
debug:
$(MAKE) doc help profile DEBUG=true
# target debug-%: Print value of %
.PHONY: debug-%
debug-%: context-% ;
# target profile: Print timing informations
.PHONY: profile
profile: context-ELAPSED_TIME