view level2/defs/makefile @ 894:6d375fee85ec

Defsfile no longer generated, now in repository end of line conversion now done by os9 copy
author boisy
date Fri, 17 Jan 2003 20:46:19 +0000
parents cea6b8dad823
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)