mono16/Makefile

20 lines
318 B
Makefile
Raw Normal View History

2024-08-24 03:52:21 +00:00
all : rickroll.xex
# reminder: $< is input
# $@ is output
%.s : %.jpg dither-image.js
node dither-image.js $< $@
%.o : %.s
ca65 -v -t atari -o $@ $<
%.xex : %.o mono8.o atari-asm-xex.cfg
ld65 -v -C ./atari-asm-xex.cfg -o $@ mono8.o $<
clean :
rm -f *.xex
rm -f *.o
rm -f *.s.png
rm -f rickroll.s