Mercurial > hg > Members > kono > nitros9-code
annotate level1/sys/makefile @ 1251:411c88ed62f6
Fixed bug in os9p1, now boots in Level Two! Also inc'ed rev (and in os9p2)
author | boisy |
---|---|
date | Sun, 17 Aug 2003 12:59:47 +0000 |
parents | cc9973fd49f4 |
children | 69e75af20e16 |
rev | line source |
---|---|
1166 | 1 # Makefile for OS-9 Level One SYS/ |
2 | |
106 | 3 include ../../Makefile.rules |
4 | |
5 DEPENDS = ./Makefile | |
6 | |
1060 | 7 SYSFILES = errmsg motd password |
287 | 8 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \ |
1149 | 9 chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp date.hp \ |
10 dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \ | |
1150 | 11 dir.hp disasm.hp display.hp dmode.hp dsave.hp dump.hp echo.hp edit.hp \ |
1149 | 12 error.hp ex.hp exbin.hp exmode.hp format.hp free.hp gfx.hp \ |
13 help.hp ident.hp iniz.hp inkey.hp irqs.hp kill.hp link.hp \ | |
14 list.hp load.hp login.hp makdir.hp \ | |
287 | 15 mdir.hp merge.hp mfree.hp os9gen.hp \ |
1220 | 16 park.hp procs.hp prompt.hp pwd.hp pxd.hp rename.hp save.hp setime.hp \ |
856 | 17 setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \ |
287 | 18 tuneport.hp unlink.hp verify.hp xmode.hp |
285
5ac4920aa1f7
Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
106
diff
changeset
|
19 HELPMSG = helpmsg |
891 | 20 ALLOBJS = $(SYSFILES) $(HELPMSG) |
106 | 21 |
1149 | 22 |
891 | 23 all: $(ALLOBJS) |
106 | 24 |
285
5ac4920aa1f7
Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
106
diff
changeset
|
25 helpmsg: $(HELPFILES) |
5ac4920aa1f7
Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
106
diff
changeset
|
26 $(MERGE) $(HELPFILES) > $@ |
5ac4920aa1f7
Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
106
diff
changeset
|
27 |
106 | 28 clean: |
285
5ac4920aa1f7
Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
106
diff
changeset
|
29 $(RM) $(HELPMSG) |
106 | 30 |
31 showobjs: | |
323 | 32 @$(ECHO) $(ALLOBJS) |