Mercurial > hg > Members > kono > nitros9-code
view level1/d64/defs/makefile @ 2321:6a5ada3e2666
added DWINIT op code, dw3 now sends on init just before installing VIRQ
author | aaronwolfe |
---|---|
date | Wed, 06 Jan 2010 01:55:30 +0000 |
parents | 27b36e424a4d |
children | b8c7b7fbf3c9 |
line wrap: on
line source
PORT = d64 include $(NITROS9DIR)/rules.mak DEPENDS = ./makefile DEFOPTS = -ls -x -z -aLevel=1 DEFSDIR = ../../../defs DEFS = Defsfile OS9Defs RBFDefs SCFDefs SysType VTIODefs ALLOBJS = $(DEFS) all: $(ALLOBJS) Defsfile: defsfile.asm $(AS) $(DEFOPTS) -p $< > $@ OS9Defs: $(DEFSDIR)/os9defs $(AS) $(DEFOPTS) -aOS9DEFS=0 $< > $@ RBFDefs: $(DEFSDIR)/rbfdefs $(AS) $(DEFOPTS) -aRBFDEFS=0 $< > $@ SCFDefs: $(DEFSDIR)/scfdefs $(AS) $(DEFOPTS) -aSCFDEFS=0 $< > $@ SysType: $(DEFSDIR)/systype $(AS) $(DEFOPTS) -aSYSTYPE=0 $< > $@ VTIODefs: $(DEFSDIR)/vtiodefs $(AS) $(DEFOPTS) -aVTIODEFS=0 $< > $@ clean: $(RM) $(DEFS) showobjs: @$(ECHO) $(ALLOBJS)