Mercurial > hg > Members > kono > nitros9-code
annotate level2/sys/makefile @ 3097:cbc0e47bafbc
cc: Fix dd_tks typo in defs/direct.h
According to the manual page 5-2 (OS-9 Technical reference)
it should be dd_tks and not dd_tsk.
https://sourceforge.net/p/nitros9/bugs/25/
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 28 Feb 2016 21:37:21 +0100 |
parents | 1adde0d916cd |
children |
rev | line source |
---|---|
2045 | 1 PORT = coco3 |
2890
1addfd8c9d5f
Revert e4a0f58a5f9b (set NITROS9DIR in makefiles)
Tormod Volden <debian.tormod@gmail.com>
parents:
2758
diff
changeset
|
2 include ../../rules.mak |
334 | 3 |
2052 | 4 vpath %.hp $(LEVEL1)/sys |
1132 | 5 |
1363 | 6 DEPENDS = ./makefile |
334 | 7 |
934 | 8 L1TXTFILES = errmsg password |
1155 | 9 L2TXTFILES = motd |
1408 | 10 BINFILES = stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs \ |
1401 | 11 ibmedcfont isolatin1font |
1155 | 12 HELPFILES = asm.hp attr.hp \ |
13 backup.hp basic09.hp binex.hp build.hp \ | |
14 chd.hp chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp \ | |
15 date.hp dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \ | |
1956 | 16 dir.hp dirsort.hp disasm.hp display.hp dmem.hp dmode.hp dsave.hp dump.hp \ |
1656
5b5390b7333a
exmode replaces xmode as the ideal utility. makefiles and help updated accordingly
boisy
parents:
1408
diff
changeset
|
17 echo.hp edit.hp error.hp ex.hp exbin.hp \ |
1155 | 18 format.hp free.hp \ |
19 gfx.hp gfx2.hp grfdrv.hp \ | |
20 help.hp \ | |
21 ident.hp iniz.hp inkey.hp irqs.hp \ | |
22 kill.hp \ | |
23 link.hp list.hp load.hp login.hp \ | |
1700 | 24 makdir.hp mdir.hp megaread.hp merge.hp mfree.hp mmap.hp modpatch.hp \ |
25 montype.hp mpi.hp os9gen.hp \ | |
1352 | 26 padrom.hp park.hp pmap.hp proc.hp procs.hp prompt.hp pwd.hp pxd.hp \ |
1155 | 27 reboot.hp rename.hp runb.hp \ |
1686 | 28 save.hp setime.hp setpr.hp shell.hp sleep.hp smap.hp \ |
1155 | 29 tee.hp tmode.hp touch.hp tsmon.hp tuneport.hp \ |
30 unlink.hp \ | |
31 verify.hp \ | |
32 wcreate.hp \ | |
33 xmode.hp | |
1151 | 34 |
1155 | 35 #HELPFILES = make.hp maketerm.hp rdump.hp rlink.hp rma.hp scred.hp |
334 | 36 |
37 HELPMSG = helpmsg | |
900 | 38 |
1155 | 39 TEXTFILES = $(L2TXTFILES) $(HELPMSG) $(L1TXTFILES) |
1408 | 40 ALLOBJS = $(TEXTFILES) $(BINFILES) |
334 | 41 |
42 all: $(ALLOBJS) $(DEPENDS) | |
43 | |
1155 | 44 $(HELPMSG): $(HELPFILES) |
1132 | 45 $(MERGE) $^ > $@ |
334 | 46 |
2969
1adde0d916cd
sys/makefiles: Remove broken prerequisite from makefile rule
Tormod Volden <debian.tormod@gmail.com>
parents:
2898
diff
changeset
|
47 $(L1TXTFILES): |
2843
ef23548ecc6e
Makefiles: Overwrite soft link destination instead of failing
Tormod Volden <debian.tormod@gmail.com>
parents:
2052
diff
changeset
|
48 $(SOFTLINK) -f $(LEVEL1)/sys/$@ |
932 | 49 |
334 | 50 clean: |
1408 | 51 $(RM) $(HELPMSG) $(L1TXTFILES) $(BINFILES) |
334 | 52 |
1408 | 53 showbinobjs: |
54 @$(ECHO) $(BINFILES) | |
900 | 55 |
56 showtextobjs: | |
57 @$(ECHO) $(TEXTFILES) | |
58 | |
334 | 59 showobjs: |
60 @$(ECHO) $(ALLOBJS) |