Mercurial > hg > Members > kono > nitros9-code
comparison level1/mc09/sys/makefile @ 3116:174eb9eda7b1
New port "mc09" for Multicomp09, an FPGA-based 6809 machine
Include new commands/descriptor for mc09 clock and SD controller
author | Neal Crook <foofoobedoo@gmail.com> |
---|---|
date | Sat, 17 Oct 2015 21:21:11 +0100 |
parents | |
children | ef66bdab9b45 |
comparison
equal
deleted
inserted
replaced
3115:460fdd304adf | 3116:174eb9eda7b1 |
---|---|
1 include ../port.mak | |
2 | |
3 vpath %.hp $(LEVEL1)/sys | |
4 | |
5 DEPENDS = ./makefile | |
6 | |
7 SYSFILES = ../../sys/errmsg ../../sys/motd ../../sys/password inetd.conf | |
8 HELPFILES = asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \ | |
9 chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp date.hp \ | |
10 dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \ | |
11 dir.hp dirsort.hp disasm.hp display.hp dmode.hp dsave.hp dump.hp echo.hp \ | |
12 edit.hp error.hp ex.hp exbin.hp format.hp free.hp gfx.hp \ | |
13 help.hp ident.hp iniz.hp inkey.hp irqs.hp kill.hp link.hp \ | |
14 list.hp load.hp login.hp makdir.hp \ | |
15 mdir.hp megaread.hp merge.hp minted.hp mpi.hp mfree.hp os9gen.hp \ | |
16 padrom.hp park.hp procs.hp prompt.hp pwd.hp pxd.hp \ | |
17 rename.hp save.hp setime.hp \ | |
18 setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \ | |
19 tuneport.hp unlink.hp verify.hp xmode.hp | |
20 HELPMSG = helpmsg | |
21 ALLOBJS = $(SYSFILES) $(HELPMSG) | |
22 | |
23 | |
24 all: $(ALLOBJS) $(DEPENDS) | |
25 | |
26 inetd.conf: $(LEVEL1)/sys/inetd.conf | |
27 @sed -e 's/%TELNET_PORT%/$(TELNET_PORT)/' -e 's/%HTTPD_PORT%/$(HTTPD_PORT)/' $^ > $@ | |
28 | |
29 alldragon: $(ALLOBJS) | |
30 | |
31 helpmsg: $(HELPFILES) | |
32 $(MERGE) $^ > $@ | |
33 | |
34 clean: | |
35 $(RM) $(HELPMSG) inetd.conf | |
36 | |
37 showobjs: | |
38 @$(ECHO) $(ALLOBJS) |