Mercurial > hg > Members > kono > nitros9-code
annotate level2/coco3/sys/makefile @ 2822:4ffb283f6233 lwtools-port
Forgot to add to makefile
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Wed, 22 May 2013 17:04:29 -0500 |
parents | 09c66281e12a |
children | 999159b0e7c0 |
rev | line source |
---|---|
2047 | 1 PORT = coco3 |
2 include $(NITROS9DIR)/rules.mak | |
2727
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
3 TELNET_PORT = 6806 |
2047 | 4 |
2050 | 5 vpath %.hp $(LEVEL2)/sys:$(LEVEL1)/sys |
6 vpath %.asm $(LEVEL2)/sys | |
2047 | 7 |
8 DEPENDS = ./makefile | |
9 | |
2727
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
10 L1TXTFILES = errmsg password |
2485 | 11 L2TXTFILES = $(NITROS9DIR)/level2/sys/motd |
2047 | 12 BINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs \ |
13 ibmedcfont isolatin1font | |
2050 | 14 HELPFILES = asm.hp attr.hp \ |
15 backup.hp basic09.hp binex.hp build.hp \ | |
16 chd.hp chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp \ | |
17 date.hp dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \ | |
18 dir.hp dirsort.hp disasm.hp display.hp dmem.hp dmode.hp dsave.hp dump.hp \ | |
19 echo.hp edit.hp error.hp ex.hp exbin.hp \ | |
20 format.hp free.hp \ | |
21 gfx.hp gfx2.hp grfdrv.hp \ | |
22 help.hp \ | |
23 ident.hp iniz.hp inkey.hp irqs.hp \ | |
24 kill.hp \ | |
25 link.hp list.hp load.hp login.hp \ | |
26 makdir.hp mdir.hp megaread.hp merge.hp mfree.hp mmap.hp modpatch.hp \ | |
27 montype.hp mpi.hp os9gen.hp \ | |
28 padrom.hp park.hp pmap.hp proc.hp procs.hp prompt.hp pwd.hp pxd.hp \ | |
29 reboot.hp rename.hp runb.hp \ | |
30 save.hp setime.hp setpr.hp shell.hp sleep.hp smap.hp \ | |
31 tee.hp tmode.hp touch.hp tsmon.hp tuneport.hp \ | |
32 unlink.hp \ | |
33 verify.hp \ | |
34 wcreate.hp \ | |
35 xmode.hp | |
2047 | 36 |
37 #HELPFILES = make.hp maketerm.hp rdump.hp rlink.hp rma.hp scred.hp | |
38 | |
39 HELPMSG = helpmsg | |
40 | |
41 TEXTFILES = $(L2TXTFILES) $(HELPMSG) $(L1TXTFILES) | |
2727
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
42 ALLOBJS = $(TEXTFILES) $(BINFILES) inetd.conf |
2047 | 43 |
44 all: $(ALLOBJS) $(DEPENDS) | |
45 | |
46 $(HELPMSG): $(HELPFILES) | |
47 $(MERGE) $^ > $@ | |
48 | |
2050 | 49 $(L1TXTFILES): $(LEVEL1)/sys/$@ |
50 -$(SOFTLINK) $(LEVEL1)/sys/$@ | |
2047 | 51 |
2727
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
52 inetd.conf: $(LEVEL1)/sys/inetd.conf |
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
53 @sed 's/%TELNET_PORT%/$(TELNET_PORT)/' $^ > $@ |
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
54 |
2047 | 55 clean: |
2727
f4870404ccc9
Adjusted makefile to populate inetd.conf with port number for telnet
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2485
diff
changeset
|
56 $(RM) $(HELPMSG) $(L1TXTFILES) $(BINFILES) inetd.conf |
2047 | 57 |
58 showbinobjs: | |
59 @$(ECHO) $(BINFILES) | |
60 | |
61 showtextobjs: | |
2728 | 62 @$(ECHO) $(TEXTFILES) inetd.conf |
2047 | 63 |
64 showobjs: | |
65 @$(ECHO) $(ALLOBJS) |