|
Last change
on this file since 45 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | # copyright John Maddock 2003 |
|---|
| 2 | # Distributed under the Boost Software License, Version 1.0. |
|---|
| 3 | # (See accompanying file LICENSE_1_0.txt or copy at |
|---|
| 4 | # http://www.boost.org/LICENSE_1_0.txt. |
|---|
| 5 | # |
|---|
| 6 | # locate all the header dependencies: |
|---|
| 7 | for file in ../../../boost/regex/*.hpp ; do |
|---|
| 8 | if [ -f $file ]; then |
|---|
| 9 | header="$header $file" |
|---|
| 10 | fi |
|---|
| 11 | done |
|---|
| 12 | |
|---|
| 13 | for file in ../../../boost/regex/v3/*.hpp; do |
|---|
| 14 | if [ -f $file ]; then |
|---|
| 15 | header="$header $file" |
|---|
| 16 | fi |
|---|
| 17 | done |
|---|
| 18 | |
|---|
| 19 | for file in ../../../boost/regex/v3/*.hxx; do |
|---|
| 20 | if [ -f $file ]; then |
|---|
| 21 | header="$header $file" |
|---|
| 22 | fi |
|---|
| 23 | done |
|---|
| 24 | |
|---|
| 25 | for file in ../../../boost/regex/v4/*.hpp; do |
|---|
| 26 | if [ -f $file ]; then |
|---|
| 27 | header="$header $file" |
|---|
| 28 | fi |
|---|
| 29 | done |
|---|
| 30 | |
|---|
| 31 | for file in ../../../boost/regex/v4/*.hxx; do |
|---|
| 32 | if [ -f $file ]; then |
|---|
| 33 | header="$header $file" |
|---|
| 34 | fi |
|---|
| 35 | done |
|---|
| 36 | |
|---|
| 37 | for file in ../../../boost/regex/config/*.hpp; do |
|---|
| 38 | if [ -f $file ]; then |
|---|
| 39 | header="$header $file" |
|---|
| 40 | fi |
|---|
| 41 | done |
|---|
| 42 | |
|---|
| 43 | for file in ../../../boost/regex/config/*.hxx; do |
|---|
| 44 | if [ -f $file ]; then |
|---|
| 45 | header="$header $file" |
|---|
| 46 | fi |
|---|
| 47 | done |
|---|
| 48 | |
|---|
| 49 | # |
|---|
| 50 | # locate all the source files: |
|---|
| 51 | for file in ../src/*.cpp; do |
|---|
| 52 | if [ -f $file ]; then |
|---|
| 53 | src="$src $file" |
|---|
| 54 | fi |
|---|
| 55 | done |
|---|
| 56 | |
|---|
| 57 | boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/') |
|---|
| 58 | echo Boost version tag = $boost_version |
|---|
| 59 | |
|---|
| 60 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.