Mercurial > hg > Members > kono > nitros9-code
comparison level1/sys/makefile @ 323:9ca004356f09
Makefiles modified
author | boisy |
---|---|
date | Wed, 24 Jul 2002 04:20:53 +0000 |
parents | 9eb83f3cf318 |
children | dfbdf7630128 |
comparison
equal
deleted
inserted
replaced
322:0d2d4a28c490 | 323:9ca004356f09 |
---|---|
1 include ../../Makefile.rules | 1 include ../../Makefile.rules |
2 | 2 |
3 DEPENDS = ./Makefile | 3 DEPENDS = ./Makefile |
4 | 4 |
5 DEFS = errmsg motd password logbook | 5 SYSFILES = errmsg motd password logbook |
6 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \ | 6 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \ |
7 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \ | 7 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \ |
8 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \ | 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 \ | 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 \ | 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 \ | 11 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \ |
12 mdir.hp merge.hp mfree.hp os9gen.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 \ | 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 \ | 14 setpr.hp shell.hp sleep.hp tee.hp tmode.hp tsmon.hp \ |
15 tuneport.hp unlink.hp verify.hp xmode.hp | 15 tuneport.hp unlink.hp verify.hp xmode.hp |
16 ALLOBJS = $(DEFS) | 16 ALLOBJS = $(SYSFILES) |
17 HELPMSG = helpmsg | 17 HELPMSG = helpmsg |
18 | 18 |
19 all: $(ALLOBJS) $(HELPMSG) | 19 all: $(ALLOBJS) $(HELPMSG) |
20 $(UNIX2OS9) $(ALLOBJS) | 20 $(UNIX2OS9) $(ALLOBJS) |
21 $(CHMOD) 644 $(ALLOBJS) $(HELPMSG) | |
21 | 22 |
22 helpmsg: $(HELPFILES) | 23 helpmsg: $(HELPFILES) |
23 $(MERGE) $(HELPFILES) > $@ | 24 $(MERGE) $(HELPFILES) > $@ |
24 $(UNIX2OS9) $@ | 25 $(UNIX2OS9) $@ |
25 | 26 |
26 clean: | 27 clean: |
27 $(OS92UNIX) $(ALLOBJS) | 28 $(OS92UNIX) $(ALLOBJS) |
28 $(RM) $(HELPMSG) | 29 $(RM) $(HELPMSG) |
29 | 30 |
30 showobjs: | 31 showobjs: |
31 @echo $(ALLOBJS) | 32 @$(ECHO) $(ALLOBJS) |