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

18 lines
261 B
Makefile
Raw Normal View History

2020-10-13 13:44:24 +02:00
.SECONDARY:
2020-09-30 09:59:18 +02:00
QUACK_ROOT=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))/..))
export QUACK_ROOT
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
for i in */ ; do ninja -t clean ; done
2020-09-30 00:10:57 +02:00