Mercurial > hg > Members > kono > nitros9-code
diff level1/coco1/defs/makefile @ 2690:6e40b043d3e0 lwtools-port
Removed coco port, added coco1 and coco2 ports.
Cleaned term* descriptors to make unified between Level 1 and Level 2
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Thu, 19 Jul 2012 10:09:15 -0500 |
parents | |
children | 678c6848dc12 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/level1/coco1/defs/makefile Thu Jul 19 10:09:15 2012 -0500 @@ -0,0 +1,35 @@ +PORT = coco +include $(NITROS9DIR)/rules.mak + +DEPENDS = ./makefile + +DEFOPTS = --preprocess -DLevel=1 +DEFSDIR = ../../../defs +DEFS = defsfile os9.d rbf.d scf.d coco.d cocovtio.d +ALLOBJS = $(DEFS) + +all: $(ALLOBJS) + +defsfile: defsfile.asm + $(AS) $(DEFOPTS) $< > $@ + +os9.d: $(DEFSDIR)/os9.d + $(AS) $(DEFOPTS) -DOS9.D=0 $< > $@ + +rbf.d: $(DEFSDIR)/rbf.d + $(AS) $(DEFOPTS) -DRBF.D=0 $< > $@ + +scf.d: $(DEFSDIR)/scf.d + $(AS) $(DEFOPTS) -DSCF.D=0 $< > $@ + +coco.d: $(DEFSDIR)/coco.d + $(AS) $(DEFOPTS) -DCOCO.D=0 $< > $@ + +cocovtio.d: $(DEFSDIR)/cocovtio.d + $(AS) $(DEFOPTS) -DCOCOVTIO.D=0 $< > $@ + +clean: + $(RM) $(DEFS) + +showobjs: + @$(ECHO) $(ALLOBJS)