Mercurial > hg > Members > kono > nitros9-code
comparison level1/d64/defs/makefile @ 2036:e482bb12a954
tano port
author | boisy |
---|---|
date | Sat, 22 Apr 2006 19:18:23 +0000 |
parents | |
children | 2e37b5a0d4b3 |
comparison
equal
deleted
inserted
replaced
2035:12ad1d266df9 | 2036:e482bb12a954 |
---|---|
1 include $(NITROS9DIR)/rules.mak | |
2 | |
3 DEPENDS = ./makefile | |
4 | |
5 DEFOPTS = -ls -x -z -aLevel=1 | |
6 DEFSDIR = ../../../defs | |
7 DEFS = Defsfile OS9Defs RBFDefs SCFDefs SysType VTIODefs | |
8 ALLOBJS = $(DEFS) | |
9 | |
10 all: $(ALLOBJS) | |
11 | |
12 Defsfile: defsfile.asm | |
13 $(AS) $(DEFOPTS) -p $< > $@ | |
14 | |
15 OS9Defs: $(DEFSDIR)/os9defs | |
16 $(AS) $(DEFOPTS) -aOS9DEFS=0 $< > $@ | |
17 | |
18 RBFDefs: $(DEFSDIR)/rbfdefs | |
19 $(AS) $(DEFOPTS) -aRBFDEFS=0 $< > $@ | |
20 | |
21 SCFDefs: $(DEFSDIR)/scfdefs | |
22 $(AS) $(DEFOPTS) -aSCFDEFS=0 $< > $@ | |
23 | |
24 SysType: $(DEFSDIR)/systype | |
25 $(AS) $(DEFOPTS) -aSYSTYPE=0 $< > $@ | |
26 | |
27 VTIODefs: $(DEFSDIR)/vtiodefs | |
28 $(AS) $(DEFOPTS) -aVTIODEFS=0 $< > $@ | |
29 | |
30 clean: | |
31 $(RM) $(DEFS) | |
32 | |
33 showobjs: | |
34 @$(ECHO) $(ALLOBJS) |