334
|
1 include ../../Makefile.rules
|
|
2
|
|
3 DEPENDS = ./Makefile
|
|
4
|
|
5 SYSFILES = errmsg LogBook
|
|
6 SYSWINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs
|
|
7 LEVEL1FILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \
|
|
8 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \
|
|
9 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \
|
|
10 display.hp dsave.hp dump.hp echo.hp edit.hp error.hp ex.hp \
|
|
11 exbin.hp format.hp free.hp help.hp ident.hp iniz.hp \
|
|
12 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \
|
|
13 mdir.hp merge.hp mfree.hp os9gen.hp \
|
|
14 park.hp procs.hp pwd.hp pxd.hp rename.hp save.hp setime.hp \
|
|
15 setpr.hp shell.hp sleep.hp tee.hp tmode.hp tsmon.hp \
|
|
16 tuneport.hp unlink.hp verify.hp xmode.hp
|
|
17 LEVEL2FILES = basic09.hp gfx.hp gfx2.hp grfdrv.hp make.hp maketerm.hp \
|
|
18 modpatch.hp montype.hp rdump.hp rlink.hp rma.hp runb.hp \
|
|
19 scred.hp setime.hp touch.hp wcreate.hp
|
|
20
|
|
21 HELPMSG = helpmsg
|
|
22 ALLOBJS = $(SYSFILES) $(SYSWINFILES) $(HELPMSG)
|
|
23
|
|
24 all: $(ALLOBJS) $(DEPENDS)
|
|
25 $(UNIX2OS9) $(SYSFILES)
|
|
26 $(CHMOD) 644 $(ALLOBJS)
|
|
27
|
|
28 $(HELPMSG): $(LEVEL1FILES)
|
|
29 $(MERGE) $(LEVEL1FILES) $(LEVEL2FILES) > $@
|
|
30 $(UNIX2OS9) $@
|
|
31
|
|
32 $(LEVEL1FILES): ../../level1/SYS/$@
|
|
33 -$(SOFTLINK) ../../level1/SYS/$@
|
|
34
|
|
35 clean:
|
|
36 $(OS92UNIX) $(SYSFILES)
|
|
37 $(RM) $(HELPMSG) $(LEVEL1FILES)
|
|
38
|
|
39 showobjs:
|
|
40 @$(ECHO) $(ALLOBJS)
|