view 3rdparty/packages/multivue/cmds_6309/makefile @ 3054:22ddd48b4ec2

level1 krn: Fix scheduler bug that only affected 6309 The original 6809 binary was correct, but it was disassembled and interpreted wrongly, so that reassembly went wrong on 6309.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 25 Jan 2015 22:36:02 +0100
parents 28ed72477814
children
line wrap: on
line source

include $(NITROS9DIR)/rules.mak

vpath %.asm ../cmds_6809

#AFLAGS		+= -e
DEPENDS		= ./makefile

OSCMDS		= $(LEVEL2)/coco3_6309/cmds/shell $(LEVEL2)/coco3_6309/cmds/utilpak1 \
		$(LEVEL2)/coco3_6309/cmds/grfdrv $(LEVEL2)/coco3_6309/cmds/backup \
		$(LEVEL2)/coco3_6309/cmds/format $(LEVEL2)/coco3_6309/cmds/free \
		$(LEVEL2)/coco3_6309/cmds/help
CMDS		= gshell cocopr control demo fstat \
		gcal gcalc gclock gport gprint gsort

ALLOBJS		= $(OSCMDS) $(CMDS)

all:	cmds $(ALLOBJS)

cmds:
	$(CD) $(LEVEL2)/coco3_6309/cmds; make

gshell: gshell.asm
	$(AS) $(ASOUT)$@ $< $(AFLAGS)

clean:
	$(RM) $(CMDS)

showobjs:
	@$(ECHO) $(ALLOBJS)

identify:
	$(IDENT_SHORT) $(ALLOBJS)