dither4/Makefile
Brion Vibber 94a2e40504 initial atari tests (not with image) and dither improvements
palette selection now biases to matches on the bright side of
the RGB color cube, since black is always available for dithering

does better but still not perfect

atari binary just writes some test data to text framebuffer
but builds and runs
2022-11-20 15:43:34 -08:00

19 lines
299 B
Makefile

.PHONY : all clean
all : dither4.xex
# sample5.s from sample5.jpg
# reminder: $< is input
# $@ is output
%.o : %.s
ca65 -v -t atari -o $@ $<
dither4.xex : dither4.o
ld65 -v -C atari-asm-xex.cfg -o $@ $<
clean :
rm -f sample5.s
rm -f sample5.o
rm -f dither4.o
rm -f dither4.xex