Mercurial > hg > Members > kono > nitros9-code
view level2/coco3/defs/makefile @ 3169:1ff3d7673e36
mc09 l2: bring sys/makefile in line with latest organisation for other platforms
Revise bootfiles/makefile to remove sysgo from bootfile - it can be
found on the root of the disk.
author | Neal Crook <foofoobedoo@gmail.com> |
---|---|
date | Mon, 17 Apr 2017 22:59:28 +0100 |
parents | 5095f2b3c81a |
children |
line wrap: on
line source
include ../port.mak DEPENDS = ./makefile DEFOPTS = --preprocess -DLevel=2 PERMDEFS = Defsfile DEFS = os9.d rbf.d scf.d coco.d coco3vtio.d ALLOBJS = $(DEFS) $(PERMDEFS) all: $(ALLOBJS) os9.d: $(DEFSDIR)/os9.d $(AS) $(AFLAGS) $(DEFOPTS) -DOS9.D=0 $< > $@ rbf.d: $(DEFSDIR)/rbf.d $(AS) $(AFLAGS) $(DEFOPTS) -DRBF.D=0 $< > $@ scf.d: $(DEFSDIR)/scf.d $(AS) $(AFLAGS) $(DEFOPTS) -DSCF.D=0 $< > $@ coco.d: $(DEFSDIR)/coco.d $(AS) $(AFLAGS) $(DEFOPTS) -DCOCO.D=0 $< > $@ coco3vtio.d: $(DEFSDIR)/cocovtio.d $(AS) $(AFLAGS) $(DEFOPTS) -DCOCOVTIO.D=0 $< > $@ clean: $(RM) $(DEFS) showobjs: @$(ECHO) $(ALLOBJS)