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 29 30 31 32 33 34
|
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/common
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
$(top_srcdir)/tap-driver.sh
PACKAGE_STRING = "libcommon"
TESTS = test_common
check_PROGRAMS = test_common
test_common_SOURCES = \
test_common.h \
test_common_main.c \
test_fifo_calls.c \
test_list_calls.c \
test_parse.c \
test_string_calls.c \
test_string_calls_unicode.c \
test_os_calls.c \
test_os_calls_signals.c \
test_ssl_calls.c \
test_base64.c \
test_guid.c
test_common_CFLAGS = \
@CHECK_CFLAGS@ \
-D TOP_SRCDIR=\"$(top_srcdir)\"
test_common_LDADD = \
$(top_builddir)/common/libcommon.la \
@CHECK_LIBS@
|