libcruft-util/test/Makefile.am

68 lines
1.5 KiB
Makefile
Raw Normal View History

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)
TEST_BIN = \
backtrace \
checksum \
float \
hton \
ip \
json \
maths \
matrix \
pool \
range \
2012-05-11 12:21:47 +10:00
region \
signal \
version
2011-05-23 17:18:52 +10:00
TESTS = $(TEST_BIN) json.pl
check_PROGRAMS = $(TEST_BIN)
2011-05-23 17:18:52 +10:00
EXTRA_DIST = json.pl
backtrace_CPPFLAGS = $(COMMON_CXXFLAGS)
backtrace_LDADD = $(builddir)/../libutil.la
backtrace_SOURCES = backtrace.cpp
2011-05-23 17:18:52 +10:00
checksum_LDADD = $(builddir)/../libutil.la
checksum_SOURCES = checksum.cpp
float_LDADD = $(builddir)/../libutil.la
2011-05-23 17:18:52 +10:00
float_SOURCES = float.cpp
hton_LDADD = $(builddir)/../libutil.la
hton_SOURCES = hton.cpp
ip_LDADD = $(builddir)/../libutil.la
ip_SOURCES = ip.cpp
json_LDADD = $(builddir)/../libutil.la
json_SOURCES = json.cpp
2011-05-23 17:18:52 +10:00
maths_LDADD = $(builddir)/../libutil.la
2011-05-23 17:18:52 +10:00
maths_SOURCES = maths.cpp
matrix_LDADD = $(builddir)/../libutil.la
2011-05-23 17:18:52 +10:00
matrix_SOURCES = matrix.cpp
pool_LDADD = $(builddir)/../libutil.la
pool_SOURCES = pool.cpp
range_LDADD = $(builddir)/../libutil.la
range_SOURCES = range.cpp
2011-05-23 17:18:52 +10:00
2012-05-11 12:21:47 +10:00
region_LDADD = $(builddir)/../libutil.la
region_SOURCES = region.cpp
signal_LDADD = $(builddir)/../libutil.la
signal_SOURCES = signal.cpp
version_LDADD = $(builddir)/../libutil.la
version_SOURCES = version.cpp