mirror of
https://github.com/StewBC/cc65-Chess.git
synced 2026-04-19 12:18:28 +00:00
Merge pull request #5 from oliverschmidt/master
Replaced cmd file with Makefile for creating disk image.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
DSK = cc65-Chess.dsk
|
||||
|
||||
# For this one, see https://applecommander.github.io/
|
||||
AC ?= ac.jar
|
||||
|
||||
REMOVES += $(DSK)
|
||||
|
||||
.PHONY: dsk
|
||||
dsk: $(DSK)
|
||||
|
||||
$(DSK): cc65-Chess.apple2
|
||||
copy apple2\template.dsk $@
|
||||
java -jar $(AC) -p $@ chess.system sys < $(shell cl65 --print-target-path)\apple2\util\loader.system
|
||||
java -jar $(AC) -as $@ chess bin < cc65-Chess.apple2
|
||||
Reference in New Issue
Block a user