plan9port/unix/mkfile

73 lines
1.3 KiB
Text
Raw Normal View History

MKSHELL=$PLAN9/bin/rc
2005-01-14 03:45:44 +00:00
new-%:V:
t=$stem
if(! ~ $t utf fmt bio regexp mk){
echo bad target
exit oops
}
if(! ~ $t mk)
t=lib$t
2004-12-28 23:27:43 +00:00
mkdir -p $t
2005-01-14 03:45:44 +00:00
rm -f $t/*
cd $t
2005-01-14 03:45:44 +00:00
mk -f ../mkfile.$stem
cd ..
2004-12-28 23:27:43 +00:00
2005-01-14 03:45:44 +00:00
test-%:V:
t=$stem
path=($PLAN9/bin $path)
mk new-$t
switch($t){
2008-07-20 10:17:17 +00:00
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
2005-01-14 03:45:44 +00:00
}
2008-07-20 10:17:17 +00:00
cd $td
2005-01-14 03:45:44 +00:00
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 ..
2008-07-20 10:17:17 +00:00
rm -r $td
2004-12-28 23:27:43 +00:00
2005-01-14 03:45:44 +00:00
lib%.tgz:V:
mk new-$stem
tar c lib$stem | gzip > $target
2005-01-14 03:45:44 +00:00
libregexp9.tgz:V:
mk new-regexp
tar c libregexp | gzip >$target
2005-01-14 03:45:44 +00:00
mk.tgz:V:
mk new-mk
tar c mk | gzip > $target
2005-01-14 03:45:44 +00:00
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 c mk | gzip > $target
2005-01-14 03:45:44 +00:00
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