quack/src/Makefile

18 lines
280 B
Makefile
Raw Permalink Normal View History

2020-10-13 13:44:24 +02:00
.SECONDARY:
2020-10-14 17:09:07 +02:00
#QUACK_ROOT=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))/..))
#export QUACK_ROOT
2020-09-30 09:59:18 +02:00
2020-10-13 13:47:13 +02:00
default:
2020-10-13 13:44:24 +02:00
python3 make_ninja.py
ninja
2020-09-30 00:10:57 +02:00
2020-10-14 15:07:35 +02:00
debug:
python3 make_ninja.py debug
ninja
2020-10-13 13:47:13 +02:00
clean:
2020-10-13 13:44:24 +02:00
python3 make_ninja.py
2020-10-14 17:09:07 +02:00
for i in */ ; do cd $$i ; ninja -t clean ; cd .. ; done
2020-09-30 00:10:57 +02:00