mirror of
https://github.com/blondie7575/SpriteGen.git
synced 2024-12-21 09:29:44 +00:00
9a4c4b7b85
The sprite generator basically works for the four primary hires colors. The included sample program renders all the sample sprites in various places on screen.
33 lines
559 B
Makefile
33 lines
559 B
Makefile
#
|
|
# Makefile
|
|
# HGR
|
|
#
|
|
# Created by Quinn Dunki on 7/19/16
|
|
# One Girl, One Laptop Productions
|
|
# http://www.quinndunki.com
|
|
# http://www.quinndunki.com/blondihacks
|
|
#
|
|
|
|
|
|
CL65=cl65
|
|
AC=AppleCommander.jar
|
|
ADDR=6000
|
|
|
|
PGM=spritedemo
|
|
|
|
all: $(PGM)
|
|
|
|
|
|
$(PGM):
|
|
@PATH=$(PATH):/usr/local/bin; $(CL65) -t apple2enh --start-addr $(ADDR) -l$(PGM).lst $(PGM).s
|
|
java -jar $(AC) -d $(PGM).dsk $(PGM)
|
|
java -jar $(AC) -p $(PGM).dsk $(PGM) BIN 0x$(ADDR) < $(PGM)
|
|
rm -f $(PGM)
|
|
rm -f $(PGM).o
|
|
osascript V2Make.scpt $(PROJECT_DIR) $(PGM)
|
|
|
|
clean:
|
|
rm -f $(PGM)
|
|
rm -f $(PGM).o
|
|
|