mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-30 15:45:58 +00:00
36 lines
606 B
Makefile
36 lines
606 B
Makefile
|
|
BUILD_DIRS = game_share
|
|
|
|
night: all
|
|
|
|
all: $(foreach dir,$(BUILD_DIRS),$(dir)-all)
|
|
|
|
%-all:
|
|
+make -k -C $* all
|
|
|
|
clean: $(foreach dir,$(BUILD_DIRS),$(dir)-clean)
|
|
|
|
%-clean:
|
|
+make -C $* clean
|
|
|
|
distclean: $(foreach dir,$(BUILD_DIRS),$(dir)-distclean)
|
|
|
|
%-distclean:
|
|
+make -C $* distclean
|
|
|
|
cleansheets: $(foreach dir,$(BUILD_DIRS),$(dir)-cleansheets)
|
|
|
|
%-cleansheets:
|
|
+make -C $* cleansheets
|
|
|
|
update: $(foreach dir,$(BUILD_DIRS),$(dir)-update)
|
|
|
|
%-update:
|
|
+make -C $* update
|
|
|
|
touch: $(foreach dir,$(BUILD_DIRS),$(dir)-touch)
|
|
|
|
%-touch:
|
|
+make -C $* touch
|
|
|
|
.NOTPARALLEL: night all clean cleansheets update touch
|