Mercurial > hg > Members > kono > nitros9-code
comparison level3/coco3_6309/defs/makefile @ 2351:87b07a1be8a0
Updated and added coco3_6309
author | boisy |
---|---|
date | Sun, 17 Jan 2010 21:42:26 +0000 |
parents | |
children | 2a37d4530972 e4a0f58a5f9b |
comparison
equal
deleted
inserted
replaced
2350:12d835665f89 | 2351:87b07a1be8a0 |
---|---|
1 PORT = coco3 | |
2 include $(NITROS9DIR)/rules.mak | |
3 | |
4 DEPENDS = ./makefile | |
5 | |
6 DEFOPTS = -ls -x -z -aLevel=3 | |
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) $(AFLAGS) $(DEFOPTS) -aOS9DEFS=0 $< > $@ | |
15 | |
16 RBFDefs: $(DEFSDIR)/rbfdefs | |
17 $(AS) $(AFLAGS) $(DEFOPTS) -aRBFDEFS=0 $< > $@ | |
18 | |
19 SCFDefs: $(DEFSDIR)/scfdefs | |
20 $(AS) $(AFLAGS) $(DEFOPTS) -aSCFDEFS=0 $< > $@ | |
21 | |
22 SysType: $(DEFSDIR)/systype | |
23 $(AS) $(AFLAGS) $(DEFOPTS) -aSYSTYPE=0 $< > $@ | |
24 | |
25 VTIODefs: $(DEFSDIR)/vtiodefs_cc3 | |
26 $(AS) $(AFLAGS) $(DEFOPTS) -aVTIODEFS=0 $< > $@ | |
27 | |
28 clean: | |
29 $(RM) $(DEFS) | |
30 | |
31 showobjs: | |
32 @$(ECHO) $(ALLOBJS) |