]> git.lyx.org Git - lyx.git/blob - boost/Makefile.am
Add icon library to link target - needed on Mac OS X - thanks Kornel
[lyx.git] / boost / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 noinst_LIBRARIES = liblyxboost.a
4
5 # Using precompiled headers makes compilation >10% slower
6 #EXTRA_DIST = pch.h
7 #BUILT_SOURCES = $(PCH_FILE)
8 #AM_CPPFLAGS += $(PCH_FLAGS)
9
10 EXTRA_DIST = boost \
11         CMakeLists.txt \
12         libs/CMakeLists.txt \
13         libs/regex/CMakeLists.txt \
14         libs/regex/regex.vcproj \
15         libs/regex/src/CMakeLists.txt \
16         libs/signals/CMakeLists.txt \
17         libs/signals/signals.vcproj \
18         libs/signals/src/CMakeLists.txt
19
20 AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>" 
21 AM_CPPFLAGS +=  $(BOOST_INCLUDES)
22
23 # This version is more than three times faster than the one below
24
25 if MONOLITHIC_BOOST
26
27 liblyxboost_a_SOURCES = \
28         lyxboost.cpp \
29         libs/regex/src/instances.cpp \
30         libs/regex/src/cpp_regex_traits.cpp \
31         libs/regex/src/c_regex_traits.cpp 
32
33 else
34
35 liblyxboost_a_SOURCES = \
36         \
37         libs/regex/src/internals.hpp \
38         libs/regex/src/c_regex_traits.cpp \
39         libs/regex/src/cpp_regex_traits.cpp \
40         libs/regex/src/cregex.cpp \
41         libs/regex/src/fileiter.cpp \
42         libs/regex/src/instances.cpp \
43         libs/regex/src/posix_api.cpp \
44         libs/regex/src/regex.cpp \
45         libs/regex/src/regex_debug.cpp \
46         libs/regex/src/regex_raw_buffer.cpp \
47         libs/regex/src/regex_traits_defaults.cpp \
48         libs/regex/src/w32_regex_traits.cpp \
49         libs/regex/src/wide_posix_api.cpp \
50         libs/regex/src/winstances.cpp \
51         libs/regex/src/static_mutex.cpp \
52         libs/signals/src/connection.cpp \
53         libs/signals/src/named_slot_map.cpp \
54         libs/signals/src/signal_base.cpp \
55         libs/signals/src/slot.cpp \
56         libs/signals/src/trackable.cpp
57
58 endif