]> git.lyx.org Git - features.git/blob - 3rdparty/boost/Makefile.am
Do not try to build an empty boost lib
[features.git] / 3rdparty / boost / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 noinst_LIBRARIES = liblyxboost.a
4
5 EXTRA_DIST = boost \
6         CMakeLists.txt \
7         LICENSE_1_0.txt \
8         libs/CMakeLists.txt \
9         libs/regex/CMakeLists.txt \
10         libs/regex/src/CMakeLists.txt
11
12 AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>" 
13 AM_CPPFLAGS +=  $(BOOST_INCLUDES)
14
15 # This version is more than three times faster than the one below
16
17 if MONOLITHIC_BOOST
18
19 liblyxboost_a_SOURCES = \
20         lyxboost.cpp \
21         libs/regex/src/instances.cpp \
22         libs/regex/src/cpp_regex_traits.cpp \
23         libs/regex/src/c_regex_traits.cpp 
24
25
26 else
27
28 liblyxboost_a_SOURCES = \
29         libs/regex/src/internals.hpp \
30         libs/regex/src/c_regex_traits.cpp \
31         libs/regex/src/cpp_regex_traits.cpp \
32         libs/regex/src/cregex.cpp \
33         libs/regex/src/fileiter.cpp \
34         libs/regex/src/instances.cpp \
35         libs/regex/src/posix_api.cpp \
36         libs/regex/src/regex.cpp \
37         libs/regex/src/regex_debug.cpp \
38         libs/regex/src/regex_raw_buffer.cpp \
39         libs/regex/src/regex_traits_defaults.cpp \
40         libs/regex/src/w32_regex_traits.cpp \
41         libs/regex/src/wide_posix_api.cpp \
42         libs/regex/src/winstances.cpp \
43         libs/regex/src/static_mutex.cpp
44
45 endif #MONOLITHIC_BOOST
46