2002-04-24 10:50:23 +00:00
|
|
|
#
|
|
|
|
# locate all the header dependencies:
|
|
|
|
for file in ../../../boost/regex/*.hpp ; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-11-11 12:15:04 +00:00
|
|
|
for file in ../../../boost/regex/v3/*.hpp; do
|
2002-04-24 10:50:23 +00:00
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-11-11 12:15:04 +00:00
|
|
|
for file in ../../../boost/regex/v3/*.hxx; do
|
2002-04-24 10:50:23 +00:00
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2003-07-11 11:51:35 +00:00
|
|
|
for file in ../../../boost/regex/v4/*.hpp; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in ../../../boost/regex/v4/*.hxx; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in ../../../boost/regex/config/*.hpp; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for file in ../../../boost/regex/config/*.hxx; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
header="$header $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-04-24 10:50:23 +00:00
|
|
|
#
|
|
|
|
# locate all the source files:
|
|
|
|
for file in ../src/*.cpp; do
|
|
|
|
if [ -f $file ]; then
|
|
|
|
src="$src $file"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2003-11-02 12:13:16 +00:00
|
|
|
boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
|
|
|
|
echo Boost version tag = $boost_version
|
2003-07-11 11:51:35 +00:00
|
|
|
|