Mercurial > hg > Members > kono > nitros9-code
view level2/defs/makefile @ 945:707940712718
Fixed small screen output problems
author | boisy |
---|---|
date | Tue, 21 Jan 2003 20:46:49 +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)