Mercurial > hg > Members > kono > nitros9-code
comparison 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 |
comparison
equal
deleted
inserted
replaced
284:cdd38ec4f526 | 285:5ac4920aa1f7 |
---|---|
1 include ../../Makefile.rules | 1 include ../../Makefile.rules |
2 | 2 |
3 DEPENDS = ./Makefile | 3 DEPENDS = ./Makefile |
4 | 4 |
5 DEFS = errmsg motd password | 5 DEFS = errmsg motd password |
6 HELPFILES = asm.hp attr.hp backup.hp build.hp chd.hp \ | |
7 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \ | |
8 dcheck.hp deiniz.hp del.hp deldir.hp dir.hp display.hp \ | |
9 dsave.hp echo.hp edit.hp error.hp ex.hp format.hp \ | |
10 free.hp gfx.hp help.hp ident.hp iniz.hp \ | |
11 inkey.hp kill.hp link.hp list.hp load.hp makdir.hp mdir.hp \ | |
12 merge.hp mfree.hp modpatch.hp montype.hp os9gen.hp procs.hp \ | |
13 pwd.hp pxd.hp rename.hp setime.hp setpr.hp shell.hp \ | |
14 tmode.hp tuneport.hp unlink.hp xmode.hp | |
6 ALLOBJS = $(DEFS) | 15 ALLOBJS = $(DEFS) |
16 HELPMSG = helpmsg | |
7 | 17 |
8 all: $(ALLOBJS) | 18 all: $(ALLOBJS) $(HELPMSG) |
9 $(UNIX2OS9) $(ALLOBJS) | 19 $(UNIX2OS9) $(ALLOBJS) |
20 | |
21 helpmsg: $(HELPFILES) | |
22 $(MERGE) $(HELPFILES) > $@ | |
23 $(UNIX2OS9) $@ | |
10 | 24 |
11 clean: | 25 clean: |
12 $(OS92UNIX) $(ALLOBJS) | 26 $(OS92UNIX) $(ALLOBJS) |
27 $(RM) $(HELPMSG) | |
13 | 28 |
14 showobjs: | 29 showobjs: |
15 @echo $(ALLOBJS) | 30 @echo $(ALLOBJS) |