1
by brian
clean slate |
1 |
# Warning - first line left blank for sh/csh/ksh compatibility. Do not
|
2 |
# remove it. fnf@Unisoft
|
|
3 |
||
4 |
# doinstall.sh --- figure out environment and do recursive make with
|
|
5 |
# appropriate pathnames. Works under SV or BSD.
|
|
6 |
||
7 |
if [ -r /usr/include/search.h ] |
|
8 |
then
|
|
9 |
# System V
|
|
10 |
$* LLIB=/usr/lib |
|
11 |
else
|
|
12 |
# 4.2 BSD
|
|
13 |
$* LLIB=/usr/lib/lint |
|
14 |
fi
|
|
15 |