view level1/cmds/makefile @ 1509:f5e2b0e2cf29

Fixed problem in level 1 port of shell_21, bootfile no longer has shell in it.
author boisy
date Wed, 14 Jan 2004 15:05:32 +0000
parents 5d726c0e6238
children 80a221f7a461
line wrap: on
line source

include ../../rules.mak

vpath %.asm $(3RDPARTY)/packages/basic09

DEPENDS		= ./makefile

BASIC09FILES	= runb.asm gfx.asm inkey.asm syscall.asm
CMDS		= asm attr backup binex build cmp cobbler config copy cputype \
		date dcheck debug ded deiniz del deldir devs dir disasm \
		display dmode dsave dump echo edit error exbin exmode format \
		free grfo help ident iniz irqs link list load login makdir \
		mdir merge mfree os9gen padrom park prompt printerr procs pwd pxd \
		rename runb save setime shell shell_21 sleep \
		tee tmode touch tsmon tuneport unlink verify xmode
SUBS		= gfx inkey syscall
ALLOBJS		= $(CMDS) $(DRAGONCMDS) $(SUBS)

all:	$(ALLOBJS)

pwd:	pd.asm
	$(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1

pxd:	pd.asm
	$(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1

shell:	shellplus.asm
	$(AS) $(AFLAGS) $< $(ASOUT)$@

clean:
	$(RM) $(ALLOBJS)

identify:
	$(IDENT_SHORT) $(ALLOBJS)

showallobjs:
	@$(ECHO) $(ALLOBJS)

showcocoobjs:
	@$(ECHO) $(CMDS) $(SUBS)

showdragonobjs:
	@$(ECHO) $(CMDS) $(DRAGONCMDS)