1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
include $(top_srcdir)/Makefile.common
include $(srcdir)/sources.mk
SUBDIRS = algebra bessel math
noinst_LTLIBRARIES = libbase.la
if ENABLE_DEBUG
noinst_LTLIBRARIES += libbase_debug.la
endif
libbase_la_SOURCES = $(noinst_h_base_sources) $(h_base_sources) \
$(cpp_base_sources)
libbase_la_CXXFLAGS = $(CXXFLAGS_OPT)
libbase_la_LIBADD = \
$(top_builddir)/@PACKAGE@/base/algebra/libalgebra.la \
$(top_builddir)/@PACKAGE@/base/bessel/libbessel.la \
$(top_builddir)/@PACKAGE@/base/math/libmath.la
libbase_debug_la_SOURCES = $(noinst_h_base_sources) $(h_base_sources) \
$(cpp_base_sources)
libbase_debug_la_CXXFLAGS = $(CXXFLAGS_DEBUG)
libbase_debug_la_LIBADD = \
$(top_builddir)/@PACKAGE@/base/algebra/libalgebra_debug.la \
$(top_builddir)/@PACKAGE@/base/bessel/libbessel_debug.la \
$(top_builddir)/@PACKAGE@/base/math/libmath_debug.la
pkgincludedir = $(includedir)/@PACKAGE@/base
pkginclude_HEADERS = $(h_base_sources)
|