2002-05-24 12:53:12 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
2000-10-03 18:38:10 +00:00
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
noinst_LIBRARIES = liblyxboost.a
|
2007-08-10 22:33:54 +00:00
|
|
|
|
2007-08-13 19:48:30 +00:00
|
|
|
# Using precompiled headers makes compilation >10% slower
|
|
|
|
#EXTRA_DIST = pch.h
|
|
|
|
#BUILT_SOURCES = $(PCH_FILE)
|
|
|
|
#AM_CPPFLAGS += $(PCH_FLAGS)
|
2007-08-10 22:33:54 +00:00
|
|
|
|
2008-05-04 22:49:19 +00:00
|
|
|
EXTRA_DIST = boost
|
|
|
|
|
2007-08-10 22:33:54 +00:00
|
|
|
AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>"
|
|
|
|
AM_CPPFLAGS += $(BOOST_INCLUDES)
|
|
|
|
|
2007-08-13 19:48:30 +00:00
|
|
|
# This version is more than three times faster than the one below
|
|
|
|
|
2007-08-13 21:58:05 +00:00
|
|
|
if MONOLITHIC_BOOST
|
2002-05-24 12:53:12 +00:00
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
liblyxboost_a_SOURCES = \
|
2007-08-13 21:58:05 +00:00
|
|
|
lyxboost.cpp \
|
|
|
|
libs/regex/src/instances.cpp \
|
|
|
|
libs/regex/src/cpp_regex_traits.cpp \
|
|
|
|
libs/regex/src/c_regex_traits.cpp
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
liblyxboost_a_SOURCES = \
|
2007-08-13 21:58:05 +00:00
|
|
|
\
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/c_regex_traits.cpp \
|
|
|
|
libs/regex/src/cpp_regex_traits.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/cregex.cpp \
|
|
|
|
libs/regex/src/fileiter.cpp \
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/instances.cpp \
|
|
|
|
libs/regex/src/posix_api.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/regex.cpp \
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/regex_debug.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/regex_raw_buffer.cpp \
|
|
|
|
libs/regex/src/regex_traits_defaults.cpp \
|
|
|
|
libs/regex/src/w32_regex_traits.cpp \
|
|
|
|
libs/regex/src/wide_posix_api.cpp \
|
|
|
|
libs/regex/src/winstances.cpp \
|
|
|
|
\
|
|
|
|
libs/signals/src/connection.cpp \
|
|
|
|
libs/signals/src/named_slot_map.cpp \
|
|
|
|
libs/signals/src/signal_base.cpp \
|
|
|
|
libs/signals/src/slot.cpp \
|
|
|
|
libs/signals/src/trackable.cpp
|
|
|
|
|
|
|
|
endif
|