]> git.lyx.org Git - lyx.git/blob - boost/Makefile.am
remove the example file currency.lyx and its German translation as this is obsolete...
[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/iostreams/src/file_descriptor.cpp \
28         libs/iostreams/src/mapped_file.cpp \
29         libs/iostreams/src/zlib.cpp \
30         \
31         libs/filesystem/src/exception.cpp \
32         libs/filesystem/src/operations.cpp \
33         libs/filesystem/src/path.cpp \
34         libs/filesystem/src/portability.cpp \
35         \
36         libs/regex/src/c_regex_traits.cpp \
37         libs/regex/src/cpp_regex_traits.cpp \
38         libs/regex/src/cregex.cpp \
39         libs/regex/src/fileiter.cpp \
40         libs/regex/src/instances.cpp \
41         libs/regex/src/posix_api.cpp \
42         libs/regex/src/regex.cpp \
43         libs/regex/src/regex_debug.cpp \
44         libs/regex/src/regex_raw_buffer.cpp \
45         libs/regex/src/regex_traits_defaults.cpp \
46         libs/regex/src/w32_regex_traits.cpp \
47         libs/regex/src/wide_posix_api.cpp \
48         libs/regex/src/winstances.cpp \
49         \
50         libs/signals/src/connection.cpp \
51         libs/signals/src/named_slot_map.cpp \
52         libs/signals/src/signal_base.cpp \
53         libs/signals/src/slot.cpp \
54         libs/signals/src/trackable.cpp
55
56 endif