Mercurial > hg > Members > kono > nitros9-code
view level2/mc09l2/defs/makefile @ 3226:9749d0dfc4a2
Changed a puls PC to rts to save cycles
author | David Ladd <drencor-xeen@users.sourceforge.net> |
---|---|
date | Sat, 20 Jan 2018 19:32:22 -0600 |
parents | e1aadba01e81 |
children |
line wrap: on
line source
PORT = mc09 include $(NITROS9DIR)/rules.mak DEPENDS = ./makefile DEFOPTS = --preprocess -DLevel=2 PERMDEFS = Defsfile DEFS = os9.d rbf.d scf.d mc09.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 $< > $@ mc09.d: $(DEFSDIR)/mc09.d $(AS) $(AFLAGS) $(DEFOPTS) -DMC09.D=0 $< > $@ clean: $(RM) $(DEFS) showobjs: @$(ECHO) $(ALLOBJS)