25 lines
670 B
Makefile
25 lines
670 B
Makefile
OUTPUT?=/home/falso/public_html/p
|
|
SNA2SKOOL_OPTIONS=-h -H
|
|
SKOOL2HTML_OPTIONS=-d $(OUTPUT) -a -C
|
|
|
|
PARADISECAFE=ParadiseCafe
|
|
|
|
all:
|
|
rm -rf $(OUTPUT)
|
|
mkdir -p $(OUTPUT)
|
|
sna2skool.py $(SNA2SKOOL_OPTIONS) -c $(PARADISECAFE).ctl $(PARADISECAFE).z80 > $(PARADISECAFE).skool
|
|
#python labeler.py > $(PARADISECAFE)2.skool
|
|
#mv $(PARADISECAFE)2.skool $(PARADISECAFE).skool
|
|
skool2html.py $(SKOOL2HTML_OPTIONS) -H $(PARADISECAFE).skool
|
|
|
|
install:
|
|
cp $(PARADISECAFE).py `skool2html.py -p`
|
|
|
|
asm:
|
|
skool2asm.py -f 2 -c ParadiseCafe.skool > ParadiseCafe.asm
|
|
pasmo ParadiseCafe.asm ParadiseCafe.bin
|
|
python gentap.py
|
|
|
|
clean:
|
|
rm -f ParadiseCafe.asm ParadiseCafe.bin ParadiseCafe.tap
|