mirror of
https://github.com/boostorg/regex.git
synced 2025-07-15 21:32:18 +02:00
Fixed config system for dll builds - the default linkage option is now static linking. Fixed makefiles - dll builds now work. Added Misc fixes for the example programs. [SVN r19044]
55 lines
890 B
Bash
55 lines
890 B
Bash
#
|
|
# locate all the header dependencies:
|
|
for file in ../../../boost/regex/*.hpp ; do
|
|
if [ -f $file ]; then
|
|
header="$header $file"
|
|
fi
|
|
done
|
|
|
|
for file in ../../../boost/regex/v3/*.hpp; do
|
|
if [ -f $file ]; then
|
|
header="$header $file"
|
|
fi
|
|
done
|
|
|
|
for file in ../../../boost/regex/v3/*.hxx; do
|
|
if [ -f $file ]; then
|
|
header="$header $file"
|
|
fi
|
|
done
|
|
|
|
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
|
|
|
|
#
|
|
# locate all the source files:
|
|
for file in ../src/*.cpp; do
|
|
if [ -f $file ]; then
|
|
src="$src $file"
|
|
fi
|
|
done
|
|
|
|
|
|
|