Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Nt.c | H A D | 16-Aug-2017 | 7.2 KiB | 444 | 363 | |
Plan9.c | H A D | 14-Jun-2015 | 5.7 KiB | 364 | 321 | |
Posix.c | H A D | 03-Jun-2013 | 5 KiB | 333 | 293 | |
README | H A D | 22-Dec-2006 | 875 | 27 | 19 | |
arc.c | H A D | 22-Dec-2006 | 835 | 53 | 45 | |
archive-AIX.c | H A D | 21-Dec-2018 | 3.4 KiB | 204 | 181 | |
archive.c | H A D | 22-Dec-2006 | 3.1 KiB | 170 | 151 | |
bufblock.c | H A D | 22-Dec-2006 | 1.3 KiB | 89 | 75 | |
env.c | H A D | 22-Dec-2006 | 2.2 KiB | 150 | 132 | |
file.c | H A D | 22-Dec-2006 | 1.3 KiB | 91 | 75 | |
fns.h | H A D | 22-Dec-2006 | 2.2 KiB | 85 | 84 | |
graph.c | H A D | 23-Dec-2006 | 5.7 KiB | 280 | 239 | |
job.c | H A D | 22-Dec-2006 | 695 | 34 | 30 | |
lex.c | H A D | 22-Dec-2006 | 2.4 KiB | 148 | 126 | |
main.c | H A D | 22-Dec-2006 | 4.8 KiB | 292 | 264 | |
match.c | H A D | 22-Dec-2006 | 768 | 50 | 45 | |
mk.c | H A D | 23-Dec-2006 | 4.9 KiB | 227 | 194 | |
mk.h | H A D | 22-Dec-2006 | 3.6 KiB | 172 | 145 | |
mkfile | H A D | 21-Dec-2018 | 475 | 43 | 33 | |
mkfile-Nt | H A D | 22-Dec-2006 | 282 | 13 | 10 | |
mkfile-Plan9 | H A D | 22-Dec-2006 | 55 | 4 | 3 | |
mkfile-Posix | H A D | 22-Dec-2006 | 146 | 8 | 6 | |
parse.c | H A D | 22-Dec-2006 | 5.2 KiB | 310 | 289 | |
rc.c | H A D | 22-Dec-2006 | 3.1 KiB | 176 | 131 | |
recipe.c | H A D | 22-Dec-2006 | 2.3 KiB | 118 | 100 | |
rule.c | H A D | 22-Dec-2006 | 1.9 KiB | 108 | 99 | |
run.c | H A D | 27-Mar-2015 | 5 KiB | 298 | 269 | |
sh.c | H A D | 22-Dec-2006 | 3.2 KiB | 190 | 148 | |
shprint.c | H A D | 15-Jan-2007 | 1.4 KiB | 89 | 79 | |
symtab.c | H A D | 22-Dec-2006 | 1.6 KiB | 98 | 84 | |
var.c | H A D | 22-Dec-2006 | 539 | 42 | 35 | |
varsub.c | H A D | 22-Dec-2006 | 4.3 KiB | 257 | 227 | |
word.c | H A D | 22-Dec-2006 | 2.5 KiB | 181 | 161 |
README
1Using the delivered mk to rebuild mk. 2 3You should be able to use the delivered executable of mk to 4build a new executable. This may be of particular interest 5on Windows NT/Win95 where the path of the shell program 6can be hard-coded by changing the variable named "shell" 7near the beginning of source file Nt.c. 8 9Mk uses the regular expression library, so build 10the program as follows: 11 121. ensure that ../../mkconfig contains the proper system definitions 13 142. ensure that the system libraries lib9, libbio, and libregexp have 15 been built. you can do this by hand by changing to ../lib9, 16 ../libbio, and ../libregexp and doing "mk nuke" and a "mk install" 17 in each. 18 193. in this directory 20 mk nuke 21 mk install 22 234. on NT/Win95 the executable must be installed by hand because the current 24 executable is locked down while it is executing: 25 26 mv obj.out ../../Nt/386/bin/mk.exe 27