diff 3rdparty/packages/multivue/cmds_6809/makefile @ 1428:7e0ecb2e394a

More improvements for Multi-vue
author boisy
date Wed, 03 Dec 2003 00:32:24 +0000
parents b3868abe1fee
children 44d21b07a99f
line wrap: on
line diff
--- a/3rdparty/packages/multivue/cmds_6809/makefile	Tue Dec 02 22:35:55 2003 +0000
+++ b/3rdparty/packages/multivue/cmds_6809/makefile	Wed Dec 03 00:32:24 2003 +0000
@@ -1,12 +1,17 @@
 include ../../../../rules.mak
 
-vpath %.asm $(6809L2)/cmds
+vpath %.asm $(6809L2)/cmds:$(6809L1)/cmds
 
 DEPENDS		= ./makefile
 
-CMDS		= grfdrv \
-		gshell cocopr control demo fstat gcal gcalc gclock gport \
-		gprint
+CMDS		= shell utilpak1 grfdrv \
+		gshell cocopr control demo fstat \
+		gcal gcalc gclock gport gprint \
+		backup format free help
+
+SHELLMODS       = shellplus date deiniz echo iniz link load save unlink
+UTILPAK1	= attr build copy del deldir dir display list makdir mdir \
+		merge mfree procs rename sleep tmode
 
 ALLOBJS		= $(CMDS)
 
@@ -15,6 +20,18 @@
 gshell: gshell.asm
 	$(AS) $(ASOUT)$@ $< $(AFLAGS)
 
+shell:	$(SHELLMODS) $(DEPENDS)
+	$(MERGE) $(SHELLMODS)>$@
+	@$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
+	@ls -l $@
+	@$(ECHO) ""
+
+utilpak1: $(UTILPAK1) $(DEPENDS)
+	$(MERGE) $(UTILPAK1)>$@
+	@$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
+	@ls -l $@
+	@$(ECHO) ""
+
 clean:
 	$(RM) $(ALLOBJS)