Mercurial > hg > Members > kono > nitros9-code
view level2/defs/makefile @ 479:cea6b8dad823
Added $(UNIX2OS9) macro
author | boisy |
---|---|
date | Wed, 09 Oct 2002 04:39:16 +0000 |
parents | e7cb2d2bfb76 |
children | 6d375fee85ec |
line wrap: on
line source
include ../../Makefile.rules DEPENDS = ./Makefile DEFOPTS = -ls -x -z -aLevel=2 DEFSDIR = $(BASEDIR)/defs DEFS = Defsfile OS9Defs RBFDefs SCFDefs SysType ALLOBJS = $(DEFS) all: $(ALLOBJS) $(UNIX2OS9) $(DEFS) $(CHMOD) 644 $(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 $< > $@ clean: $(RM) $(DEFS) showobjs: @$(ECHO) $(ALLOBJS)