9 lines
261 B
Makefile
9 lines
261 B
Makefile
%.csv: %.ods
|
|
libreoffice --headless --convert-to csv:"Text - txt - csv (StarCalc)":44,34,76,,,,true --outdir $(dir $@) $<
|
|
|
|
%.rgb565.inc: %.rgb565
|
|
python gen/rgb_txt.py $< > $@
|
|
|
|
main: main.c bear.rgb565.inc panda.rgb565.inc
|
|
gcc -g -Og -lm -std=gnu23 $< -o $@
|