mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-01-12 16:19:06 +00:00
29 lines
356 B
Makefile
29 lines
356 B
Makefile
SUBDIRS=tools/makeadf \
|
|
tools/imagecon\
|
|
000.trackdisk\
|
|
001.simple_image\
|
|
002.sprite_display\
|
|
003.music\
|
|
004.copper_bars\
|
|
005.copper_vert\
|
|
006.simple_blit
|
|
|
|
.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 $@
|
|
|
|
|
|
|