annotate level3/coco3_6309/defs/makefile @ 2486:1b3d766b807c

Fixed issue
author boisy
date Wed, 31 Mar 2010 02:44:16 +0000
parents 87b07a1be8a0
children 2a37d4530972 e4a0f58a5f9b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
1 PORT = coco3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
4 DEPENDS = ./makefile
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
5
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
6 DEFOPTS = -ls -x -z -aLevel=3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
7 PERMDEFS = Defsfile
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
8 DEFS = OS9Defs RBFDefs SCFDefs SysType VTIODefs
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
9 ALLOBJS = $(DEFS) $(PERMDEFS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
10
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
11 all: $(ALLOBJS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
12
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
13 OS9Defs: $(DEFSDIR)/os9defs
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
14 $(AS) $(AFLAGS) $(DEFOPTS) -aOS9DEFS=0 $< > $@
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
15
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
16 RBFDefs: $(DEFSDIR)/rbfdefs
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
17 $(AS) $(AFLAGS) $(DEFOPTS) -aRBFDEFS=0 $< > $@
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
18
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
19 SCFDefs: $(DEFSDIR)/scfdefs
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
20 $(AS) $(AFLAGS) $(DEFOPTS) -aSCFDEFS=0 $< > $@
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
21
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
22 SysType: $(DEFSDIR)/systype
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
23 $(AS) $(AFLAGS) $(DEFOPTS) -aSYSTYPE=0 $< > $@
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
24
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
25 VTIODefs: $(DEFSDIR)/vtiodefs_cc3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
26 $(AS) $(AFLAGS) $(DEFOPTS) -aVTIODEFS=0 $< > $@
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
27
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
28 clean:
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
29 $(RM) $(DEFS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
30
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
31 showobjs:
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
32 @$(ECHO) $(ALLOBJS)