]> git.lyx.org Git - lyx.git/blob - boost/Makefile.am
Embedding: add option \extra_embedded_files to buffer params. This increase
[lyx.git] / boost / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 noinst_LTLIBRARIES = liblyxboost.la
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 AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>" 
11 AM_CPPFLAGS +=  $(BOOST_INCLUDES)
12
13 # This version is more than three times faster than the one below
14
15 if MONOLITHIC_BOOST
16
17 liblyxboost_la_SOURCES = \
18         lyxboost.cpp \
19         libs/regex/src/instances.cpp \
20         libs/regex/src/cpp_regex_traits.cpp \
21         libs/regex/src/c_regex_traits.cpp 
22
23 else
24
25 liblyxboost_la_SOURCES = \
26         \
27         libs/filesystem/src/exception.cpp \
28         libs/filesystem/src/operations.cpp \
29         libs/filesystem/src/path.cpp \
30         libs/filesystem/src/portability.cpp \
31         \
32         libs/regex/src/c_regex_traits.cpp \
33         libs/regex/src/cpp_regex_traits.cpp \
34         libs/regex/src/cregex.cpp \
35         libs/regex/src/fileiter.cpp \
36         libs/regex/src/instances.cpp \
37         libs/regex/src/posix_api.cpp \
38         libs/regex/src/regex.cpp \
39         libs/regex/src/regex_debug.cpp \
40         libs/regex/src/regex_raw_buffer.cpp \
41         libs/regex/src/regex_traits_defaults.cpp \
42         libs/regex/src/w32_regex_traits.cpp \
43         libs/regex/src/wide_posix_api.cpp \
44         libs/regex/src/winstances.cpp \
45         \
46         libs/signals/src/connection.cpp \
47         libs/signals/src/named_slot_map.cpp \
48         libs/signals/src/signal_base.cpp \
49         libs/signals/src/slot.cpp \
50         libs/signals/src/trackable.cpp
51
52 endif