Mercurial > hg > Members > kono > nitros9-code
comparison level2/coco3/defs/makefile @ 2047:ed46fc161cc3
All for the mix
author | boisy |
---|---|
date | Sun, 23 Apr 2006 17:39:36 +0000 |
parents | |
children | d63587190d9b |
comparison
equal
deleted
inserted
replaced
2046:cac62639358c | 2047:ed46fc161cc3 |
---|---|
1 PORT = coco3 | |
2 include $(NITROS9DIR)/rules.mak | |
3 | |
4 DEPENDS = ./makefile | |
5 | |
6 DEFOPTS = -ls -x -z -aLevel=2 | |
7 PERMDEFS = Defsfile | |
8 DEFS = OS9Defs RBFDefs SCFDefs SysType VTIODefs | |
9 ALLOBJS = $(DEFS) $(PERMDEFS) | |
10 | |
11 all: $(ALLOBJS) | |
12 | |
13 OS9Defs: $(DEFSDIR)/os9defs | |
14 $(AS) $(DEFOPTS) -aOS9DEFS=0 $< > $@ | |
15 | |
16 RBFDefs: $(DEFSDIR)/rbfdefs | |
17 $(AS) $(DEFOPTS) -aRBFDEFS=0 $< > $@ | |
18 | |
19 SCFDefs: $(DEFSDIR)/scfdefs | |
20 $(AS) $(DEFOPTS) -aSCFDEFS=0 $< > $@ | |
21 | |
22 SysType: $(DEFSDIR)/systype | |
23 $(AS) $(DEFOPTS) -aSYSTYPE=0 $< > $@ | |
24 | |
25 VTIODefs: $(DEFSDIR)/vtiodefs_cc3 | |
26 $(AS) $(DEFOPTS) -aVTIODEFS=0 $< > $@ | |
27 | |
28 clean: | |
29 $(RM) $(DEFS) | |
30 | |
31 showobjs: | |
32 @$(ECHO) $(ALLOBJS) |