view level2/defs/makefile @ 1733:e6e8a44ab20a

Updated by Phill
author boisy
date Sat, 27 Nov 2004 15:23:45 +0000
parents 83453a4c9e51
children 27e85b681dab
line wrap: on
line source

include ../../rules.mak

DEPENDS		= ./makefile

DEFOPTS		= -ls -x -z -aLevel=2
DEFSDIR		= $(BASEDIR)/defs
PERMDEFS	= Defsfile
DEFS		= OS9Defs RBFDefs SCFDefs SysType CC3IODefs
ALLOBJS		= $(DEFS) $(PERMDEFS)

all:	$(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 $< > $@

CC3IODefs: $(DEFSDIR)/cc3iodefs
	$(AS) $(DEFOPTS) -aCC3IODEFS=0 $< > $@

clean:
	$(RM) $(DEFS)

showobjs:
	@$(ECHO) $(ALLOBJS)