AmigaExamples/Makefile

85 lines
1.4 KiB
Makefile
Raw Normal View History

SUBDIRS=tools/makeadf \
tools/imagecon\
2016-03-12 02:20:31 +00:00
tools/resize\
2016-05-18 05:47:31 +00:00
tools/croppa\
tools/external/shrinkler\
2016-03-21 09:36:02 +00:00
tools/external/doynamite68k\
tools/mapgen\
tools/fade\
000.trackdisk\
001.simple_image\
002.sprite_display\
003.music\
004.copper_bars\
005.copper_vert\
2016-03-04 02:07:13 +00:00
006.simple_blit\
007.masked_blit\
2016-03-04 05:15:25 +00:00
008.shift_blit\
2016-03-05 09:35:13 +00:00
009.anim_blit\
010.blit_speed\
011.ehb_mode\
2016-03-09 23:42:57 +00:00
012.ham_mode\
013.dithered_ham\
2016-03-11 10:32:46 +00:00
014.lace_mode\
2016-03-13 01:45:30 +00:00
015.sliced_ham\
2016-03-14 02:45:54 +00:00
016.copper_fun\
017.dual_playfield\
018.vert_scroll\
019.hori_scroll\
2016-03-16 09:17:08 +00:00
020.shrinkler\
022.photons_bootloader\
023.slideshow\
2016-05-18 05:47:31 +00:00
024.simple_text\
025.scroll_text\
026.tile_hscroll\
027.parallax\
#028.bs
#021.calling_c\
2016-02-27 03:15:25 +00:00
.PHONY: subdirs $(SUBDIRS)
all: subdirs
clean:
for dir in $(SUBDIRS); do \
echo Cleaning $$dir; \
make -C $$dir clean; \
done
2016-03-04 00:43:25 +00:00
rm -f *~
2016-02-27 03:15:25 +00:00
subdirs: $(SUBDIRS)
2016-03-03 06:32:08 +00:00
test:
@echo ""
@echo ""
@echo ""
@echo "Testing tools/makeadf..."
@echo "------------------------"
make -C tools/makeadf test
@echo ""
@echo ""
@echo ""
@echo "Testing tools/imagecon..."
@echo "-------------------------"
make -C tools/imagecon test
@echo ""
@echo ""
@echo ""
2016-03-12 02:20:31 +00:00
@echo "Testing tools/resize..."
@echo "-------------------------"
make -C tools/resize test
@echo ""
@echo ""
@echo ""
2016-05-18 05:47:31 +00:00
@echo "Testing tools/croppa..."
@echo "-------------------------"
make -C tools/croppa test
@echo ""
@echo ""
@echo ""
2016-03-03 06:32:08 +00:00
2016-02-27 03:15:25 +00:00
$(SUBDIRS):
@echo ""
make -C $@