New diodemo sample by Oliver Schmidt

git-svn-id: svn://svn.cc65.org/cc65/trunk@3440 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-03-31 07:28:14 +00:00
parent e3df1fea4a
commit 16e88a489b
3 changed files with 187 additions and 2 deletions

View File

@@ -48,9 +48,22 @@ C1541 = c1541
# --------------------------------------------------------------------------
# Rules how to make each one of the binaries
# List of executables. This list could be made target dependent by checking
# $(SYS).
EXELIST=ascii fire gunzip65 hello mousedemo nachtm plasma sieve tgidemo
EXELIST = ascii \
diodemo \
fire \
gunzip65 \
hello \
mousedemo \
nachtm \
plasma \
sieve \
tgidemo
# --------------------------------------------------------------------------
# Rules how to make each one of the binaries
.PHONY: all
all: $(EXELIST)
@@ -58,6 +71,9 @@ all: $(EXELIST)
ascii: $(CRT0) ascii.o $(CLIB)
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
diodemo: $(CRT0) diodemo.o $(CLIB)
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
fire: $(CRT0) fire.o $(CLIB)
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^