Mercurial > hg > Members > kono > nitros9-code
view level2/defs/makefile @ 986:aebfc8992bfd
Factored out what appears to be Level III code... was causing ERROR 207's under
OS-9 Level Two
author | boisy |
---|---|
date | Mon, 17 Feb 2003 20:37:01 +0000 |
parents | 6d375fee85ec |
children | c847e6ee341d |
line wrap: on
line source
include ../../Makefile.rules DEPENDS = ./Makefile DEFOPTS = -ls -x -z -aLevel=2 DEFSDIR = $(BASEDIR)/defs PERMDEFS = Defsfile DEFS = OS9Defs RBFDefs SCFDefs SysType ALLOBJS = $(DEFS) $(PERMDEFS) all: $(ALLOBJS) $(CHMOD) 644 $(ALLOBJS) 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)