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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user