annotate level2/sys/makefile @ 961:53b612a9ef45

Added a conditional check to the roll message, so you can build format without any any bother. I changed part of the message from "Sectors/Cluster" to "Clusters/Sector" John Collyer
author johncollyer
date Fri, 31 Jan 2003 01:09:36 +0000
parents 20d2c52a3170
children 786719ee2a4b
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
7183076e2b49 Files added
boisy
parents:
diff changeset
3 DEPENDS = ./Makefile
7183076e2b49 Files added
boisy
parents:
diff changeset
4
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
5 SYSTXTFILES = LogBook motd
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
6 SYSBINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
7 L1TXTFILES = errmsg password
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
8 L1HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
9 chx.hp cmp.hp cobbler.hp config.hp copy.hp date.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
10 dcheck.hp debug.hp deiniz.hp del.hp deldir.hp dir.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
11 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
12 exbin.hp format.hp free.hp gfx.hp help.hp ident.hp iniz.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
13 inkey.hp kill.hp link.hp list.hp load.hp login.hp makdir.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
14 mdir.hp merge.hp mfree.hp os9gen.hp \
7183076e2b49 Files added
boisy
parents:
diff changeset
15 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
16 setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
17 tuneport.hp unlink.hp verify.hp xmode.hp
911
ae7f3e871f4a gfx.hp moved to level1/SYS
boisy
parents: 900
diff changeset
18 L2HELPFILES = basic09.hp gfx2.hp grfdrv.hp make.hp maketerm.hp \
334
7183076e2b49 Files added
boisy
parents:
diff changeset
19 modpatch.hp montype.hp rdump.hp rlink.hp rma.hp runb.hp \
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
20 scred.hp wcreate.hp
334
7183076e2b49 Files added
boisy
parents:
diff changeset
21
7183076e2b49 Files added
boisy
parents:
diff changeset
22 HELPMSG = helpmsg
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
23
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
24 TEXTFILES = $(SYSTXTFILES) $(HELPMSG) $(L1TXTFILES)
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
25 BINFILES = $(SYSBINFILES)
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
26 ALLOBJS = $(TEXTFILES) $(BINFILES)
334
7183076e2b49 Files added
boisy
parents:
diff changeset
27
7183076e2b49 Files added
boisy
parents:
diff changeset
28 all: $(ALLOBJS) $(DEPENDS)
7183076e2b49 Files added
boisy
parents:
diff changeset
29 $(CHMOD) 644 $(ALLOBJS)
7183076e2b49 Files added
boisy
parents:
diff changeset
30
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
31 $(HELPMSG): $(L1HELPFILES)
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
32 $(MERGE) $(L1HELPFILES) $(L2HELPFILES) > $@
334
7183076e2b49 Files added
boisy
parents:
diff changeset
33
882
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
34 $(L1HELPFILES): $(LEVEL1)/SYS/$@
22f3858746b0 Made some changes
boisy
parents: 855
diff changeset
35 -$(SOFTLINK) $(LEVEL1)/SYS/$@
334
7183076e2b49 Files added
boisy
parents:
diff changeset
36
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
37 $(L1TXTFILES): $(LEVEL1)/SYS/$@
932
8aa4ea7f358e errmsg now linked from level1/SYS
boisy
parents: 911
diff changeset
38 -$(SOFTLINK) $(LEVEL1)/SYS/$@
8aa4ea7f358e errmsg now linked from level1/SYS
boisy
parents: 911
diff changeset
39
334
7183076e2b49 Files added
boisy
parents:
diff changeset
40 clean:
934
20d2c52a3170 Fixed integration with level1/SYS files
boisy
parents: 932
diff changeset
41 $(RM) $(HELPMSG) $(L1HELPFILES) $(L1TXTFILES)
334
7183076e2b49 Files added
boisy
parents:
diff changeset
42
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
43 showbinobjs:
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
44 @$(ECHO) $(BINFILES)
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
45
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
46 showtextobjs:
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
47 @$(ECHO) $(TEXTFILES)
d7969e08a482 os9copy now does eol translation
boisy
parents: 882
diff changeset
48
334
7183076e2b49 Files added
boisy
parents:
diff changeset
49 showobjs:
7183076e2b49 Files added
boisy
parents:
diff changeset
50 @$(ECHO) $(ALLOBJS)