Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « common « tests - github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7dbbe28f68a14650ebaf4990c390de59e6c0144 (plain)
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

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_string_calls.c \
    test_os_calls.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@