Mercurial > hg > Members > kono > nitros9-code
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 |
rev | line source |
---|---|
2047 | 1 PORT = coco3 |
2 include $(NITROS9DIR)/rules.mak | |
3 | |
4 DEPENDS = ./makefile | |
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 | 7 PERMDEFS = Defsfile |
2624 | 8 DEFS = os9.d rbf.d scf.d coco.d coco3vtio.d |
2047 | 9 ALLOBJS = $(DEFS) $(PERMDEFS) |
10 | |
11 all: $(ALLOBJS) | |
12 | |
2624 | 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 | 15 |
2624 | 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 | 18 |
2624 | 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 | 21 |
2624 | 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 | 24 |
2624 | 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 | 27 |
28 clean: | |
29 $(RM) $(DEFS) | |
30 | |
31 showobjs: | |
32 @$(ECHO) $(ALLOBJS) |