blob: eb4ac7d21773bfd534c7ed0252fa97e7221397f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
echo "Script to invoke Jam from the top"
if [ X$OS != "XWindows_NT" ] ; then
# Fixup issues with the .zip format
chmod +x *.sh
fi
# Make sure that some environment variable are visible to Jam:
export OSTYPE MACHTYPE HOSTTYPE
jam -q -fJambase -j${NUMBER_OF_PROCESSORS:-2}
|