Mercurial > hg > Members > kono > nitros9-code
annotate level1/coco/defs/makefile @ 2664:09feb97c181f lwtools-port
Initial changes to use lwasm instead of mamou
Initial high level changes to use lwasm instead of mamou.
author | William Astle <lost@l-w.ca> |
---|---|
date | Sun, 10 Jun 2012 12:40:11 -0600 |
parents | b8c7b7fbf3c9 |
children | 2a37d4530972 |
rev | line source |
---|---|
2037 | 1 PORT = coco |
2035 | 2 include $(NITROS9DIR)/rules.mak |
3 | |
4 DEPENDS = ./makefile | |
5 | |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
6 DEFOPTS = -DLevel=1 |
2035 | 7 DEFSDIR = ../../../defs |
2624 | 8 DEFS = defsfile os9.d rbf.d scf.d coco.d cocovtio.d |
2035 | 9 ALLOBJS = $(DEFS) |
10 | |
11 all: $(ALLOBJS) | |
12 | |
2624 | 13 defsfile: defsfile.asm |
2035 | 14 $(AS) $(DEFOPTS) -p $< > $@ |
15 | |
2624 | 16 os9.d: $(DEFSDIR)/os9.d |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
17 $(AS) $(DEFOPTS) -DOS9.D=0 $< > $@ |
2035 | 18 |
2624 | 19 rbf.d: $(DEFSDIR)/rbf.d |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
20 $(AS) $(DEFOPTS) -DRBF.D=0 $< > $@ |
2035 | 21 |
2624 | 22 scf.d: $(DEFSDIR)/scf.d |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
23 $(AS) $(DEFOPTS) -DSCF.D=0 $< > $@ |
2035 | 24 |
2624 | 25 coco.d: $(DEFSDIR)/coco.d |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
26 $(AS) $(DEFOPTS) -DCOCO.D=0 $< > $@ |
2035 | 27 |
2624 | 28 cocovtio.d: $(DEFSDIR)/cocovtio.d |
2664
09feb97c181f
Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents:
2624
diff
changeset
|
29 $(AS) $(DEFOPTS) -DCOCOVTIO.D=0 $< > $@ |
2035 | 30 |
31 clean: | |
32 $(RM) $(DEFS) | |
33 | |
34 showobjs: | |
35 @$(ECHO) $(ALLOBJS) |