Mercurial > hg > Members > kono > nitros9-code
annotate level1/sys/makefile @ 1548:50ff40ac6472
Code in place for Level 1, but still not working under Level 1
author | boisy |
---|---|
date | Tue, 04 May 2004 16:51:25 +0000 |
parents | 53c50c807d55 |
children | 5b5390b7333a |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
1166 | 2 |
1363 | 3 DEPENDS = ./makefile |
106 | 4 |
1060 | 5 SYSFILES = errmsg motd password |
287 | 6 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \ |
1149 | 7 chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp date.hp \ |
8 dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \ | |
1150 | 9 dir.hp disasm.hp display.hp dmode.hp dsave.hp dump.hp echo.hp edit.hp \ |
1149 | 10 error.hp ex.hp exbin.hp exmode.hp format.hp free.hp gfx.hp \ |
11 help.hp ident.hp iniz.hp inkey.hp irqs.hp kill.hp link.hp \ | |
12 list.hp load.hp login.hp makdir.hp \ | |
287 | 13 mdir.hp merge.hp mfree.hp os9gen.hp \ |
1352 | 14 padrom.hp park.hp procs.hp prompt.hp pwd.hp pxd.hp \ |
15 rename.hp save.hp setime.hp \ | |
856 | 16 setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \ |
287 | 17 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
|
18 HELPMSG = helpmsg |
891 | 19 ALLOBJS = $(SYSFILES) $(HELPMSG) |
106 | 20 |
1149 | 21 |
891 | 22 all: $(ALLOBJS) |
106 | 23 |
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
|
24 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
|
25 $(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
|
26 |
106 | 27 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
|
28 $(RM) $(HELPMSG) |
106 | 29 |
30 showobjs: | |
323 | 31 @$(ECHO) $(ALLOBJS) |