annotate level1/coco/defs/makefile @ 2624:b8c7b7fbf3c9

Major changes: o os9defs, rbfdefs, scfdefs now os9.d, rbf.d, and scf.d o vtiodefs now broken into cocovtio.d (for coco and dragon) and atarivtio.d o systype now broken into coco.d, dragon.d and atari.d o all references to the above in other files have changed
author Boisy Pitre <boisy.pitre@nuance.com>
date Fri, 24 Feb 2012 08:51:08 -0600
parents 2e37b5a0d4b3
children 09feb97c181f e4a0f58a5f9b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2037
2e37b5a0d4b3 set PORT var
boisy
parents: 2035
diff changeset
1 PORT = coco
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
12ad1d266df9 coco port
boisy
parents:
diff changeset
3
12ad1d266df9 coco port
boisy
parents:
diff changeset
4 DEPENDS = ./makefile
12ad1d266df9 coco port
boisy
parents:
diff changeset
5
12ad1d266df9 coco port
boisy
parents:
diff changeset
6 DEFOPTS = -ls -x -z -aLevel=1
12ad1d266df9 coco port
boisy
parents:
diff changeset
7 DEFSDIR = ../../../defs
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
8 DEFS = defsfile os9.d rbf.d scf.d coco.d cocovtio.d
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
9 ALLOBJS = $(DEFS)
12ad1d266df9 coco port
boisy
parents:
diff changeset
10
12ad1d266df9 coco port
boisy
parents:
diff changeset
11 all: $(ALLOBJS)
12ad1d266df9 coco port
boisy
parents:
diff changeset
12
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
13 defsfile: defsfile.asm
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
14 $(AS) $(DEFOPTS) -p $< > $@
12ad1d266df9 coco port
boisy
parents:
diff changeset
15
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
16 os9.d: $(DEFSDIR)/os9.d
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
17 $(AS) $(DEFOPTS) -aOS9.D=0 $< > $@
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
18
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
19 rbf.d: $(DEFSDIR)/rbf.d
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
20 $(AS) $(DEFOPTS) -aRBF.D=0 $< > $@
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
21
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
22 scf.d: $(DEFSDIR)/scf.d
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
23 $(AS) $(DEFOPTS) -aSCF.D=0 $< > $@
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
24
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
25 coco.d: $(DEFSDIR)/coco.d
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
26 $(AS) $(DEFOPTS) -aCOCO.D=0 $< > $@
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
27
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
28 cocovtio.d: $(DEFSDIR)/cocovtio.d
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2037
diff changeset
29 $(AS) $(DEFOPTS) -aCOCOVTIO.D=0 $< > $@
2035
12ad1d266df9 coco port
boisy
parents:
diff changeset
30
12ad1d266df9 coco port
boisy
parents:
diff changeset
31 clean:
12ad1d266df9 coco port
boisy
parents:
diff changeset
32 $(RM) $(DEFS)
12ad1d266df9 coco port
boisy
parents:
diff changeset
33
12ad1d266df9 coco port
boisy
parents:
diff changeset
34 showobjs:
12ad1d266df9 coco port
boisy
parents:
diff changeset
35 @$(ECHO) $(ALLOBJS)