mirror of
https://github.com/pfloos/quack
synced 2024-12-23 21:03:47 +01:00
14 lines
217 B
Makefile
14 lines
217 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
|
|
for i in */ ; do ninja -t clean ; done
|
|
|