1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2025-12-09 22:51:02 +00:00
Files
AmigaExamples/Makefile
2016-02-27 14:15:25 +11:00

21 lines
262 B
Makefile

SUBDIRS=000.trackdisk 001.simple_image 002.sprite_display 003.music
.PHONY: subdirs $(SUBDIRS)
all: subdirs
clean:
for dir in $(SUBDIRS); do \
echo Cleaning $$dir; \
make -C $$dir clean; \
done
subdirs: $(SUBDIRS)
$(SUBDIRS):
@echo ""
make -C $@