delhndlr/Makefile

26 lines
640 B
Makefile
Raw Normal View History

2018-08-04 07:02:16 +00:00
# Compiles with https://www.brutaldeluxe.fr/products/crossdevtools/merlin/
2021-09-24 03:47:16 +00:00
# a.k.a. https://github.com/apple2accumulator/merlin32
2018-08-04 07:02:16 +00:00
#
2021-09-28 17:33:25 +00:00
AC=java -jar AppleCommander-1.3.5-ac.jar
2021-09-30 04:12:36 +00:00
SRC=delkeyeraseleft.s
PGM=delkeyeraseleft
2018-08-04 07:02:16 +00:00
VOL=$(PGM)
DSK=$(PGM).dsk
$(DSK): $(PGM)
2021-09-28 17:33:25 +00:00
#$(AC) -pro140 $(DSK) $(VOL) ---- Broken in 1.3.5 and others
2021-09-29 01:44:41 +00:00
cp prodos.dsk $(DSK)
$(AC) -p $(DSK) $(PGM) BIN 0x0300 < $(PGM)
2018-08-04 07:02:16 +00:00
$(PGM): $(SRC)
2021-09-24 03:47:16 +00:00
merlin32 $(SRC)
2018-08-04 07:02:16 +00:00
@# Merlin fails to provide a non-0 exit code on failure so
@# it needs to be simulated by checking for the error_output.txt
@# file.
@test -e $(PGM)
clean:
2021-09-24 03:47:16 +00:00
$(RM) $(PGM) $(DSK) error_output.txt _FileInformation.txt
2018-08-04 07:02:16 +00:00