mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
14 lines
241 B
Makefile
14 lines
241 B
Makefile
|
|
all: cp437.vicdual.c c64.vicdual.c
|
|
|
|
cp437.vicdual.c: ../fonts/cp437-8x8.bdf
|
|
python ../parsebdf8.py $< -r -C > $@
|
|
|
|
c64.vicdual.c: ../fonts/c64.bdf
|
|
python ../parsebdf8.py $< -r -C > $@
|
|
|
|
%.h:
|
|
cat $* | hexdump -v -e '"\n" 128/1 "0x%02x,"'
|
|
|
|
|