2023-03-19 02:32:07 +00:00
|
|
|
all : sample0.xex \
|
|
|
|
sample1.xex sample2.xex sample3.xex sample4.xex sample5.xex sample6.xex \
|
|
|
|
fruit.xex mapclock.xex sailboat.xex sunset.xex train404.xex \
|
|
|
|
potato.xex selfie.xex kitty.xex meme.xex
|
2022-11-20 23:43:34 +00:00
|
|
|
|
|
|
|
# sample5.s from sample5.jpg
|
|
|
|
|
|
|
|
# reminder: $< is input
|
|
|
|
# $@ is output
|
|
|
|
|
2024-08-31 16:34:46 +00:00
|
|
|
%.s : %.jpg dither-image.js gif.sh mp4.sh
|
2022-12-04 22:21:46 +00:00
|
|
|
node dither-image.js $< $@
|
2022-11-26 01:35:10 +00:00
|
|
|
|
2024-08-31 16:34:46 +00:00
|
|
|
chickens.s : chickens.wav pack-wav.js
|
|
|
|
node pack-wav.js $< $@
|
|
|
|
|
|
|
|
dubstep.wav.s : dubstep.wav pack-wav.js
|
|
|
|
node pack-wav.js $< $@
|
|
|
|
|
|
|
|
dubstep.wav : Dubstep_Loop_by_WinnieTheMoog.ogg
|
|
|
|
ffmpeg -i "Dubstep_Loop_by_WinnieTheMoog.ogg" \
|
|
|
|
-t 2.0 \
|
|
|
|
-acodec pcm_u8 \
|
|
|
|
-ac 1 \
|
|
|
|
-ar 15704 \
|
|
|
|
-y $@
|
|
|
|
|
2022-11-26 01:54:58 +00:00
|
|
|
%.o : %.s
|
|
|
|
ca65 -v -t atari -o $@ $<
|
|
|
|
|
2024-08-31 16:34:46 +00:00
|
|
|
%.xex : %.o dither4.o dubstep.wav.o atari-asm-xex.cfg
|
|
|
|
ld65 -v -C ./atari-asm-xex.cfg -o $@ dither4.o dubstep.wav.o $<
|
2022-11-26 02:01:14 +00:00
|
|
|
|
|
|
|
clean :
|
2023-03-19 22:47:22 +00:00
|
|
|
rm -f *.o
|
|
|
|
rm -f *.s.png
|
2023-03-23 23:52:48 +00:00
|
|
|
rm -f sample[0-9].s
|
|
|
|
rm -f fruit.s mapclock.s sailboat.s sunset.s train404.s
|
|
|
|
rm -f potato.s selfie.s kitty.s meme.s
|
2022-12-08 00:12:15 +00:00
|
|
|
rm -f *.xex
|
2024-08-31 16:34:46 +00:00
|
|
|
rm -f chickens.s
|
|
|
|
rm -f chickens.o
|
|
|
|
rm -f dubstep.wav
|
|
|
|
rm -f dubstep.wav.[so]
|
|
|
|
|
|
|
|
.dummy: sample0.s sample1.s sample2.s sample3.s sample4.s sample5.s sample6.s chickens.s
|