dither4/Makefile

28 lines
535 B
Makefile
Raw Normal View History

2022-11-26 01:54:58 +00:00
all : sample0.xex sample1.xex sample2.xex sample3.xex sample4.xex sample5.xex sample6.xex
# sample5.s from sample5.jpg
# reminder: $< is input
# $@ is output
2022-11-26 01:35:10 +00:00
%.s : %.jpg
node dither-image.js $< $@ $@.png
2022-11-26 01:54:58 +00:00
%.o : %.s
ca65 -v -t atari -o $@ $<
%.xex : %.o dither4.o
ld65 -v -C atari-asm-xex.cfg -o $@ $<
2022-11-26 01:35:10 +00:00
dither4.xex : dither4.o sample6.o
ld65 -v -C atari-asm-xex.cfg -o $@ $<
2022-11-26 01:54:58 +00:00
#clean :
# rm -f dither4.o
# rm -f dither4.xex
# rm -f sample[0-6].o
# rm -f sample[0-6].s
# rm -f sample[0-6].xex
# rm -f sample[0-6].png