version 1.52, 2009/09/22 21:09:24
|
version 1.53, 2009/09/28 20:51:52
|
Line 89 if ($CHKLIBS == "no") then |
|
Line 89 if ($CHKLIBS == "no") then |
|
base/local/libs/soi/scripts/rmlinks.csh | base/local/libs/soi/scripts/rmlinks.csh |
endif | endif |
else | else |
|
# Make include directories here, since they are used by multiple script blocks below |
|
if (!(-d base/include)) then |
|
mkdir -p base/include |
|
endif |
|
|
|
if (!(-d include)) then |
|
mkdir -p include |
|
endif |
|
|
echo -n "Setting links for local project configuration..." | echo -n "Setting links for local project configuration..." |
if (-e suflag.txt) then | if (-e suflag.txt) then |
cd proj | cd proj |
Line 198 if ($CHKLIBS == "no") then |
|
Line 207 if ($CHKLIBS == "no") then |
|
base/local/libs/soi/scripts/genlinks.csh | base/local/libs/soi/scripts/genlinks.csh |
endif | endif |
endif | endif |
endif |
|
endif |
|
|
|
# Enter required library names and versions here. |
|
if ($CHKLIBS == "yes") then |
|
|
|
endif |
|
| |
# Site Localization | # Site Localization |
if (!(-e suflag.txt)) then | if (!(-e suflag.txt)) then |
Line 245 else if (-e config.local) then |
|
Line 247 else if (-e config.local) then |
|
endif | endif |
| |
echo "Setting links to headers..." | echo "Setting links to headers..." |
if (!(-d base/include)) then |
|
mkdir -p base/include |
|
endif |
|
cd base/include | cd base/include |
find .. -path '../include' -prune -o -name \*.h \( \( -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; \) | find .. -path '../include' -prune -o -name \*.h \( \( -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; \) |
cd ../.. | cd ../.. |
| |
if (!(-d include)) then |
|
mkdir -p include |
|
endif |
|
cd include | cd include |
if (-d ../base/include) then | if (-d ../base/include) then |
find ../base/include -name \*.h -exec ln -s {} . \; | find ../base/include -name \*.h -exec ln -s {} . \; |
|
|
| |
# run perl script to do even more configuration | # run perl script to do even more configuration |
./moreconfigure.pl -fcustom.mk | ./moreconfigure.pl -fcustom.mk |
|
endif |
|
else |
|
# $CHKLIBS == "yes" |
|
# Enter required library names and versions here. |
|
|
|
|
|
endif |
|
|