4
1
mirror of https://github.com/pfloos/quack synced 2024-06-22 05:02:18 +02:00
quack/src/Makefile
2020-10-13 13:47:13 +02:00

15 lines
233 B
Makefile

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