dither4/Makefile

45 lines
1.1 KiB
Makefile
Raw Normal View History

2022-12-11 19:58:37 +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
# sample5.s from sample5.jpg
# reminder: $< is input
# $@ is output
2022-12-11 19:58:37 +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
2022-11-30 07:59:38 +00:00
chickens.s : chickens.wav pack-wav.js
node pack-wav.js $< $@
2022-12-12 02:54:50 +00:00
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 $@ $<
2022-12-12 02:54:50 +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 :
rm -f dither4.o
rm -f dither4.xex
rm -f sample[0-6].s
2022-11-30 07:59:38 +00:00
rm -f sample[0-6].o
2022-11-26 02:01:14 +00:00
rm -f sample[0-6].xex
2022-11-30 07:59:38 +00:00
rm -f sample[0-6].s.png
2022-12-08 00:12:15 +00:00
rm -f *.xex
2022-11-30 07:59:38 +00:00
rm -f chickens.s
rm -f chickens.o
2022-12-12 02:54:50 +00:00
rm -f dubstep.wav
rm -f dubstep.wav.[so]
2022-11-26 02:25:36 +00:00
2022-12-08 00:12:15 +00:00
.dummy: sample0.s sample1.s sample2.s sample3.s sample4.s sample5.s sample6.s chickens.s