New fire demo. Add tgi drivers to the disk.

git-svn-id: svn://svn.cc65.org/cc65/trunk@1631 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-25 14:20:33 +00:00
parent b4b1a82968
commit 9dbb7d3305
3 changed files with 277 additions and 7 deletions

View File

@@ -32,11 +32,14 @@ C1541 = c1541
# --------------------------------------------------------------------------
# Rules how to make each one of the binaries
EXELIST=hello mousedemo nachtm plasma sieve tgidemo
EXELIST=fire hello mousedemo nachtm plasma sieve tgidemo
.PHONY: all
all: $(EXELIST)
fire: $(CRT0) fire.o $(CLIB)
@$(LD) -t $(SYS) -m fire.map -Ln fire.lbl -o $@ $^
hello: $(CRT0) hello.o $(CLIB)
@$(LD) -t $(SYS) -m hello.map -Ln hello.lbl -o $@ $^
@@ -64,11 +67,13 @@ tgidemo: $(CRT0) tgidemo.o $(CLIB)
disk: samples.d64
samples.d64: all
$(C1541) -format samples,AA d64 $@
for exe in $(EXELIST); do\
$(C1541) -attach $@ -write $$exe;\
done
@$(C1541) -format samples,AA d64 $@ > /dev/null
@for exe in $(EXELIST); do\
$(C1541) -attach $@ -write $$exe > /dev/null;\
done;\
for tgi in *.tgi; do\
$(C1541) -attach $@ -write $$tgi > /dev/null;\
done;
# --------------------------------------------------------------------------
# Cleanup rules