clone from dither4
This commit is contained in:
commit
1165c19c8e
7 changed files with 3573 additions and 0 deletions
19
Makefile
Normal file
19
Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue