mirror of
https://github.com/Bithack/principia.git
synced 2026-06-24 02:04:08 +00:00
13 lines
269 B
Makefile
13 lines
269 B
Makefile
SUBDIRS := featured-list-creator lvl-icon-extractor lvlbuf-decompressor lvledit package-creator progress-dump progress-get
|
|
|
|
.PHONY: all clean $(SUBDIRS)
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean; \
|
|
done
|