Update makefiles and the script that creates them: was generating dependencies that weren't required.

[SVN r40405]
This commit is contained in:
John Maddock
2007-10-24 09:15:20 +00:00
parent f2a7f4d8c3
commit 816f0ba137
14 changed files with 35 additions and 28 deletions

View File

@ -6,7 +6,11 @@
# locate all the header dependencies:
for file in ../../../boost/regex/*.hpp ; do
if [ -f $file ]; then
header="$header $file"
if [ $file != ../../../boost/regex/concepts.hpp ]; then
if [ $file != ../../../boost/regex/mfc.hpp ]; then
header="$header $file"
fi
fi
fi
done
@ -58,3 +62,5 @@ boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | se
echo Boost version tag = $boost_version