Mercurial > hg > Members > kono > nitros9-code
annotate level1/sys/makefile @ 323:9ca004356f09
Makefiles modified
author | boisy |
---|---|
date | Wed, 24 Jul 2002 04:20:53 +0000 |
parents | 9eb83f3cf318 |
children | dfbdf7630128 |
rev | line source |
---|---|
106 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
323 | 5 SYSFILES = errmsg motd password logbook |
287 | 6 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.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
|
7 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \ |
287 | 8 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \ |
9 display.hp dsave.hp dump.hp echo.hp edit.hp error.hp ex.hp \ | |
10 exbin.hp format.hp free.hp help.hp ident.hp iniz.hp \ | |
11 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \ | |
12 mdir.hp merge.hp mfree.hp os9gen.hp \ | |
13 park.hp procs.hp pwd.hp pxd.hp rename.hp save.hp setime.hp \ | |
14 setpr.hp shell.hp sleep.hp tee.hp tmode.hp tsmon.hp \ | |
15 tuneport.hp unlink.hp verify.hp xmode.hp | |
323 | 16 ALLOBJS = $(SYSFILES) |
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
|
17 HELPMSG = helpmsg |
106 | 18 |
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 all: $(ALLOBJS) $(HELPMSG) |
106 | 20 $(UNIX2OS9) $(ALLOBJS) |
323 | 21 $(CHMOD) 644 $(ALLOBJS) $(HELPMSG) |
106 | 22 |
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
|
23 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
|
24 $(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
|
25 $(UNIX2OS9) $@ |
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: |
28 $(OS92UNIX) $(ALLOBJS) | |
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) |