annotate level2/sys/makefile @ 1132:2690efca4eaf

More sensible changes to Mkaefiles
author boisy
date Mon, 14 Apr 2003 15:49:33 +0000
parents c847e6ee341d
children ee8d3667bc71
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
334
7183076e2b49 Files added
boisy
parents:
diff changeset
1 include ../../Makefile.rules
7183076e2b49 Files added
boisy
parents:
diff changeset
2
1132
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
3 vpath %.hp $(LEVEL1)/SYS
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
4
334
7183076e2b49 Files added
boisy
parents:
diff changeset
5 DEPENDS = ./Makefile
7183076e2b49 Files added
boisy
parents:
diff changeset
6
1061
786719ee2a4b Removed LogBook
boisy
parents: 934
diff changeset
7 SYSTXTFILES = motd
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
8 SYSBINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
9 L1TXTFILES = errmsg password
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
10 L1HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
11 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
12 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
13 display.hp dsave.hp dump.hp echo.hp edit.hp error.hp ex.hp \
911
ae7f3e871f4a gfx.hp moved to level1/SYS
boisy
parents: 900
diff changeset
14 exbin.hp format.hp free.hp gfx.hp help.hp ident.hp iniz.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
15 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
16 mdir.hp merge.hp mfree.hp os9gen.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
17 park.hp procs.hp pwd.hp pxd.hp rename.hp save.hp setime.hp \
855
ff3262e34cf6 touch.hp moved to level1
boisy
parents: 366
diff changeset
18 setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
19 tuneport.hp unlink.hp verify.hp xmode.hp
911
ae7f3e871f4a gfx.hp moved to level1/SYS
boisy
parents: 900
diff changeset
20 L2HELPFILES = basic09.hp gfx2.hp grfdrv.hp make.hp maketerm.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
21 modpatch.hp montype.hp rdump.hp rlink.hp rma.hp runb.hp \
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
22 scred.hp wcreate.hp
334
7183076e2b49 Files added
boisy
parents:
diff changeset
23
7183076e2b49 Files added
boisy
parents:
diff changeset
24 HELPMSG = helpmsg
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
25
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
26 TEXTFILES = $(SYSTXTFILES) $(HELPMSG) $(L1TXTFILES)
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
27 BINFILES = $(SYSBINFILES)
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
28 ALLOBJS = $(TEXTFILES) $(BINFILES)
334
7183076e2b49 Files added
boisy
parents:
diff changeset
29
7183076e2b49 Files added
boisy
parents:
diff changeset
30 all: $(ALLOBJS) $(DEPENDS)
7183076e2b49 Files added
boisy
parents:
diff changeset
31
1132
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
32 $(HELPMSG): $(L1HELPFILES) $(L2HELPFILES)
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
33 $(MERGE) $^ > $@
334
7183076e2b49 Files added
boisy
parents:
diff changeset
34
1132
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
35 #$(L1HELPFILES): $(LEVEL1)/SYS/$@
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
36 # -$(SOFTLINK) $(LEVEL1)/SYS/$@
334
7183076e2b49 Files added
boisy
parents:
diff changeset
37
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
38 $(L1TXTFILES): $(LEVEL1)/SYS/$@
932
8aa4ea7f358e errmsg now linked from level1/SYS
boisy
parents: 911
diff changeset
39 -$(SOFTLINK) $(LEVEL1)/SYS/$@
8aa4ea7f358e errmsg now linked from level1/SYS
boisy
parents: 911
diff changeset
40
334
7183076e2b49 Files added
boisy
parents:
diff changeset
41 clean:
1132
2690efca4eaf More sensible changes to Mkaefiles
boisy
parents: 1129
diff changeset
42 $(RM) $(HELPMSG) $(L1TXTFILES)
334
7183076e2b49 Files added
boisy
parents:
diff changeset
43
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
44 showbinobjs:
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
45 @$(ECHO) $(BINFILES)
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
46
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
47 showtextobjs:
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
48 @$(ECHO) $(TEXTFILES)
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
49
334
7183076e2b49 Files added
boisy
parents:
diff changeset
50 showobjs:
7183076e2b49 Files added
boisy
parents:
diff changeset
51 @$(ECHO) $(ALLOBJS)