annotate level1/sys/makefile @ 323:9ca004356f09

Makefiles modified
author boisy
date Wed, 24 Jul 2002 04:20:53 +0000
parents 9eb83f3cf318
children dfbdf7630128
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
106
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
1 include ../../Makefile.rules
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
2
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
3 DEPENDS = ./Makefile
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
4
323
9ca004356f09 Makefiles modified
boisy
parents: 289
diff changeset
5 SYSFILES = errmsg motd password logbook
287
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
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
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
8 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
9 display.hp dsave.hp dump.hp echo.hp edit.hp error.hp ex.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
10 exbin.hp format.hp free.hp help.hp ident.hp iniz.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
11 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
12 mdir.hp merge.hp mfree.hp os9gen.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
13 park.hp procs.hp pwd.hp pxd.hp rename.hp save.hp setime.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
14 setpr.hp shell.hp sleep.hp tee.hp tmode.hp tsmon.hp \
cc0d5795003f Moved touch.hp to Level Two
boisy
parents: 285
diff changeset
15 tuneport.hp unlink.hp verify.hp xmode.hp
323
9ca004356f09 Makefiles modified
boisy
parents: 289
diff changeset
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
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
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
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
20 $(UNIX2OS9) $(ALLOBJS)
323
9ca004356f09 Makefiles modified
boisy
parents: 289
diff changeset
21 $(CHMOD) 644 $(ALLOBJS) $(HELPMSG)
106
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
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
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
27 clean:
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
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
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
30
1db3e85d5133 SYS files for Level 1
boisy
parents:
diff changeset
31 showobjs:
323
9ca004356f09 Makefiles modified
boisy
parents: 289
diff changeset
32 @$(ECHO) $(ALLOBJS)