blob: 1c4319c6ba8698d3f44358304cbe03f0bd464d03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
MKSHELL=$PLAN9/bin/rc
new-%:V:
t=$stem
if(! ~ $t utf fmt bio regexp mk){
echo bad target
exit oops
}
if(! ~ $t mk)
t=lib$t
mkdir -p $t
rm -f $t/*
cd $t
mk -f ../mkfile.$stem
cd ..
test-%:V:
t=$stem
path=($PLAN9/bin $path)
mk new-$t
switch($t){
case bio; d=libbio; td=libbio
case regexp; d=libregexp; td=libregexp
case fmt; d=lib9/fmt; td=libfmt
case utf; d=lib9/utf; td=libutf
case mk; d=cmd/mk; td=mk
}
cd $td
d=$PLAN9/src/$d
for(i in `{ls -p $d/*.c})
if(! test -f $i)
echo XXX missing $i
make
for(i in `{ls *.c})
if(! test -f `{echo $i | sed 's/.c$/.o/'})
echo XXX not building $i
cd ..
rm -r $td
lib%.tgz:V:
mk new-$stem
tar cf /dev/stdout lib$stem | gzip > $target
libregexp9.tgz:V:
mk new-regexp
tar cf /dev/stdout libregexp | gzip >$target
mk.tgz:V:
mk new-mk
tar cf /dev/stdout mk | gzip > $target
mk-with-libs.tgz:V:
mk new-utf
mk new-fmt
mk new-bio
mk new-regexp
mk new-mk
rm -rf zot
mkdir zot
mv libutf libfmt libbio libregexp mk zot
mv zot mk
cp make/Makefile.all mk/Makefile
tar cf /dev/stdout mk | gzip > $target
rm -r mk
tgz:V: libutf.tgz libfmt.tgz libregexp9.tgz libbio.tgz mk.tgz mk-with-libs.tgz
push:V:
rm -f *.sha1 *.md5 *.sha256
for (i in *.tgz)
sha1sum $i >$i.sha1
cp *.tgz $9fansweb/plan9port/unix
cp *.tgz.sha1 $9fansweb/plan9port/unix
|