Added tgidemo

git-svn-id: svn://svn.cc65.org/cc65/trunk@1433 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-10-03 17:36:18 +00:00
parent f965924c2a
commit eea95f7b64
4 changed files with 215 additions and 8 deletions

View File

@@ -32,26 +32,29 @@ C1541 = c1541
# --------------------------------------------------------------------------
# Rules how to make each one of the binaries
EXELIST=hello mousedemo nachtm plasma sieve
EXELIST=hello mousedemo nachtm plasma sieve tgidemo
.PHONY: all
all: $(EXELIST)
hello: $(CRT0) hello.o $(CLIB)
hello: $(CRT0) hello.o $(CLIB)
@$(LD) -t $(SYS) -m hello.map -Ln hello.lbl -o $@ $^
mousedemo: $(CRT0) mousedemo.o $(CLIB)
@$(LD) -t $(SYS) -m mousedemo.map -Ln mousedemo.lbl -o $@ $^
nachtm: $(CRT0) nachtm.o $(CLIB)
@$(LD) -t $(SYS) -m nachtm.map -Ln nachtm.lbl -o $@ $^
nachtm: $(CRT0) nachtm.o $(CLIB)
@$(LD) -t $(SYS) -vm -m nachtm.map -Ln nachtm.lbl -o $@ $^
plasma: $(CRT0) plasma.o $(CLIB)
@$(LD) -t $(SYS) -m nachtm.map -Ln nachtm.lbl -o $@ $^
plasma: $(CRT0) plasma.o $(CLIB)
@$(LD) -t $(SYS) -m plasma.map -Ln nachtm.lbl -o $@ $^
sieve: $(CRT0) sieve.o $(CLIB)
sieve: $(CRT0) sieve.o $(CLIB)
@$(LD) -t $(SYS) -m sieve.map -Ln sieve.lbl -o $@ $^
tgidemo: $(CRT0) tgidemo.o $(CLIB)
@$(LD) -t $(SYS) -m tgidemo.map -Ln tgidemo.lbl -o $@ $^
# --------------------------------------------------------------------------
# Rule to make a disk with all samples. Needs the c1541 program that comes