Danny Robson
cae7a80ec1
removes complications when srcpath/dstpath or child/parent directories have naming collisions (in particular the json directories).
45 lines
759 B
Makefile
45 lines
759 B
Makefile
AM_LDFLAGS = $(COMMON_LDFLAGS) $(BOOST_LDFLAGS) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB)
|
|
AM_CXXFLAGS = $(COMMON_CXXFLAGS) -I$(top_srcdir)
|
|
|
|
TEST_BIN = \
|
|
backtrace \
|
|
bezier \
|
|
bitwise \
|
|
checksum \
|
|
colour \
|
|
float \
|
|
hton \
|
|
ip \
|
|
json_types \
|
|
maths \
|
|
maths_matrix \
|
|
matrix \
|
|
md2 \
|
|
md4 \
|
|
md5 \
|
|
options \
|
|
point \
|
|
polynomial \
|
|
pool \
|
|
rand \
|
|
range \
|
|
region \
|
|
ripemd \
|
|
sha1 \
|
|
sha2 \
|
|
signal \
|
|
stringid \
|
|
version
|
|
|
|
AM_DEFAULT_SOURCE_EXT = .cpp
|
|
LDADD = $(builddir)/../libutil.a
|
|
|
|
if PLATFORM_WIN32
|
|
hton_LDFLAGS = -lws2_32
|
|
endif
|
|
|
|
TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
|
|
TESTS = static.test json.test
|
|
check_PROGRAMS = $(TEST_BIN)
|
|
EXTRA_DIST = static.test json.test json
|