blob: be2b03d58811d40e741adb85292588288ab67b8c (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
echo "Script to invoke Jam from the top and install"
echo "binaries in the ./bin directory and samples into the ref ./directory"
if [ X$OS != "XWindows_NT" ] ; then
# Fixup issues with the .zip format
chmod +x *.sh
fi
jam -q -fJambase -j${NUMBER_OF_PROCESSORS:-2} install
|