annotate level2/coco3/defs/makefile @ 2822:4ffb283f6233 lwtools-port

Forgot to add to makefile
author Boisy Pitre <boisy.pitre@nuance.com>
date Wed, 22 May 2013 17:04:29 -0500
parents 2a37d4530972
children 28ed72477814
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
1 PORT = coco3
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
3
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
4 DEPENDS = ./makefile
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
5
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
6 DEFOPTS = --preprocess -DLevel=2
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
7 PERMDEFS = Defsfile
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
8 DEFS = os9.d rbf.d scf.d coco.d coco3vtio.d
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
9 ALLOBJS = $(DEFS) $(PERMDEFS)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
10
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
11 all: $(ALLOBJS)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
12
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
13 os9.d: $(DEFSDIR)/os9.d
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
14 $(AS) $(AFLAGS) $(DEFOPTS) -DOS9.D=0 $< > $@
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
15
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
16 rbf.d: $(DEFSDIR)/rbf.d
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
17 $(AS) $(AFLAGS) $(DEFOPTS) -DRBF.D=0 $< > $@
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
18
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
19 scf.d: $(DEFSDIR)/scf.d
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
20 $(AS) $(AFLAGS) $(DEFOPTS) -DSCF.D=0 $< > $@
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
21
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
22 coco.d: $(DEFSDIR)/coco.d
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
23 $(AS) $(AFLAGS) $(DEFOPTS) -DCOCO.D=0 $< > $@
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
24
2624
b8c7b7fbf3c9 Major changes:
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2050
diff changeset
25 coco3vtio.d: $(DEFSDIR)/cocovtio.d
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2624
diff changeset
26 $(AS) $(AFLAGS) $(DEFOPTS) -DCOCOVTIO.D=0 $< > $@
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
27
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
28 clean:
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
29 $(RM) $(DEFS)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
30
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
31 showobjs:
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
32 @$(ECHO) $(ALLOBJS)