diff level1/sys/makefile @ 285:5ac4920aa1f7

Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One help method is deprecated
author boisy
date Sun, 21 Jul 2002 22:03:03 +0000
parents 1db3e85d5133
children cc0d5795003f
line wrap: on
line diff
--- a/level1/sys/makefile	Sun Jul 21 21:27:28 2002 +0000
+++ b/level1/sys/makefile	Sun Jul 21 22:03:03 2002 +0000
@@ -3,13 +3,28 @@
 DEPENDS		= ./Makefile
 
 DEFS		= errmsg motd password
+HELPFILES	= asm.hp attr.hp backup.hp build.hp chd.hp \
+		chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \
+		dcheck.hp deiniz.hp del.hp deldir.hp dir.hp display.hp \
+		dsave.hp echo.hp edit.hp error.hp ex.hp format.hp \
+		free.hp gfx.hp help.hp ident.hp iniz.hp \
+		inkey.hp kill.hp link.hp list.hp load.hp makdir.hp mdir.hp \
+		merge.hp mfree.hp modpatch.hp montype.hp os9gen.hp procs.hp \
+		pwd.hp pxd.hp rename.hp setime.hp setpr.hp shell.hp \
+		tmode.hp tuneport.hp unlink.hp xmode.hp
 ALLOBJS		= $(DEFS)
+HELPMSG		= helpmsg
 
-all:	$(ALLOBJS)
+all:	$(ALLOBJS) $(HELPMSG)
 	$(UNIX2OS9) $(ALLOBJS)
 
+helpmsg: $(HELPFILES)
+	$(MERGE) $(HELPFILES) > $@
+	$(UNIX2OS9) $@
+
 clean:
 	$(OS92UNIX) $(ALLOBJS)
+	$(RM) $(HELPMSG)
 
 showobjs:
 	@echo $(ALLOBJS)