Mercurial > hg > Members > kono > nitros9-code
view level1/mc09/defs/makefile @ 3119:b230a123db20
mc09: Remove mc09vtio.d and all the things that referenced it
It was a copy of the coco version and I thought previously that
I would need to port it to mc09, but now I have concluded that
will not be necessary.
author | Neal Crook <foofoobedoo@gmail.com> |
---|---|
date | Fri, 04 Dec 2015 23:43:13 +0000 |
parents | 174eb9eda7b1 |
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 mc09.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 $< > $@ mc09.d: $(DEFSDIR)/mc09.d $(AS) $(DEFOPTS) -DMC09.D=0 $< > $@ clean: $(RM) $(DEFS) showobjs: @$(ECHO) $(ALLOBJS)