Mercurial > hg > Members > kono > nitros9-code
view level1/coco1/defs/makefile @ 2826:e76cc015cc03 lwtools-port
incorporated new port.mak file in every port directory
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Thu, 23 May 2013 18:09:08 -0500 |
parents | 678c6848dc12 |
children |
line wrap: on
line source
include ../port.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)