2011-05-23 17:18:52 +10:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
$(COMMON_CXXFLAGS) \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_srcdir)/src/ \
|
|
|
|
-I$(top_srcdir)/lib/
|
|
|
|
|
|
|
|
AM_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
TEST_BIN = \
|
|
|
|
backtrace \
|
|
|
|
float \
|
|
|
|
hton \
|
|
|
|
ip \
|
|
|
|
maths \
|
|
|
|
matrix \
|
2011-07-01 13:46:39 +10:00
|
|
|
pool \
|
2011-06-27 15:31:41 +10:00
|
|
|
range \
|
|
|
|
signal \
|
|
|
|
version
|
|
|
|
|
2011-05-23 17:18:52 +10:00
|
|
|
TESTS = $(TEST_BIN) json.pl
|
|
|
|
check_PROGRAMS = $(TEST_BIN) json-check
|
|
|
|
EXTRA_DIST = json.pl
|
|
|
|
|
|
|
|
backtrace_CPPFLAGS = $(COMMON_CXXFLAGS)
|
2011-06-27 15:31:41 +10:00
|
|
|
backtrace_LDADD = $(builddir)/../libutil.la
|
|
|
|
backtrace_SOURCES = backtrace.cpp
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
float_LDADD = $(builddir)/../libutil.la
|
2011-05-23 17:18:52 +10:00
|
|
|
float_SOURCES = float.cpp
|
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
hton_LDADD = $(builddir)/../libutil.la
|
|
|
|
hton_SOURCES = hton.cpp
|
|
|
|
|
|
|
|
ip_LDADD = $(builddir)/../libutil.la
|
|
|
|
ip_SOURCES = ip.cpp
|
|
|
|
|
|
|
|
json_check_LDADD = $(builddir)/../libutil.la $(BOOST_FILESYSTEM_LIB)
|
|
|
|
json_check_SOURCES = json-check.cpp
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
maths_LDADD = $(builddir)/../libutil.la
|
2011-05-23 17:18:52 +10:00
|
|
|
maths_SOURCES = maths.cpp
|
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
matrix_LDADD = $(builddir)/../libutil.la
|
2011-05-23 17:18:52 +10:00
|
|
|
matrix_SOURCES = matrix.cpp
|
|
|
|
|
2011-07-01 13:46:39 +10:00
|
|
|
pool_LDADD = $(builddir)/../libutil.la
|
|
|
|
pool_SOURCES = pool.cpp
|
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
range_LDADD = $(builddir)/../libutil.la
|
|
|
|
range_SOURCES = range.cpp
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
signal_LDADD = $(builddir)/../libutil.la
|
|
|
|
signal_SOURCES = signal.cpp
|
2011-06-21 21:42:20 +10:00
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
version_LDADD = $(builddir)/../libutil.la
|
|
|
|
version_SOURCES = version.cpp
|