4
1
mirror of https://github.com/pfloos/quack synced 2024-06-02 03:15:31 +02:00
quack/src/Makefile
2020-10-14 17:09:07 +02:00

18 lines
280 B
Makefile

.SECONDARY:
#QUACK_ROOT=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))/..))
#export QUACK_ROOT
default:
python3 make_ninja.py
ninja
debug:
python3 make_ninja.py debug
ninja
clean:
python3 make_ninja.py
for i in */ ; do cd $$i ; ninja -t clean ; cd .. ; done