mirror of
https://github.com/blondie7575/GSCats.git
synced 2024-11-22 06:31:48 +00:00
2bdaae8f30
- Integrated Mr. Sprite art pipeline - Fixed background restore bug - Added debug pause
41 lines
968 B
Makefile
41 lines
968 B
Makefile
#
|
|
# Makefile
|
|
# GS Cats
|
|
#
|
|
# Created by Quinn Dunki on 7/14/15.
|
|
# One Girl, One Laptop Productions
|
|
# http://www.quinndunki.com
|
|
# http://www.quinndunki.com/blondihacks
|
|
#
|
|
|
|
|
|
CL65=cl65
|
|
AC=AppleCommander.jar
|
|
ADDR=800
|
|
|
|
PGM=gscats
|
|
MRSPRITE=../MrSprite/mrsprite CODE
|
|
PALETTE=00ff00 000000 ffff00 886611 cc9933 eebb44 dd6666 ff99aa 00ff00 ffff00 ffff00 ffff00 ffff00 ffff00 ffff00 ffff00 ffffff
|
|
|
|
all: $(PGM)
|
|
|
|
|
|
$(PGM):
|
|
@PATH=$(PATH):/usr/local/bin; $(CL65) -t apple2enh --cpu 65816 --start-addr $(ADDR) -l$(PGM).lst $(PGM).s
|
|
java -jar $(AC) -d $(PGM).2mg $(PGM)
|
|
java -jar $(AC) -p $(PGM).2mg $(PGM) BIN 0x$(ADDR) < $(PGM)
|
|
cp $(PGM).2mg ~/Library/Application\ Support/Sweet16/Disk\ Images
|
|
rm -f $(PGM)
|
|
rm -f $(PGM).o
|
|
osascript V2Make.scpt $(PROJECT_DIR) $(PGM)
|
|
|
|
clean:
|
|
rm -f $(PGM)
|
|
rm -f $(PGM).o
|
|
rm ~/Library/Application\ Support/Sweet16/Disk\ Images/*
|
|
|
|
sprites:
|
|
$(MRSPRITE) cat.gif $(PALETTE)
|
|
$(MRSPRITE) block.gif $(PALETTE)
|
|
$(MRSPRITE) block1.gif $(PALETTE)
|