blob: 5032c80998e5b6059ba52b45ae37fceb47e05ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
PLAN9=`pwd` export PLAN9
PATH=$PLAN9/bin:$PATH export PATH
cd src
make
mk clean
mk install
echo "Set PLAN9=$PLAN9 in your profile environment."
echo 'Add $PLAN9/bin to your profile PATH.'
|