summaryrefslogtreecommitdiff
path: root/makefile
blob: acb6c5684775550346d7172466448cde1366acad (plain)
1
2
3
4
5
6
7
8
9
10
11
MK = make -j
WEKEN := $(wildcard oop*w*)
TARGETS := all clean compile_commands zip

_: all

.PHONY: $(TARGETS) $(WEKEN)
$(TARGETS): $(WEKEN)
$(WEKEN):
	$(MK) -C $@ $(MAKECMDGOALS)