xrdp/tests/common/Makefile.am

36 lines
732 B
Makefile
Raw Normal View History

2021-03-29 00:55:19 +03:00
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/common
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
$(top_srcdir)/tap-driver.sh
2022-01-27 19:23:51 +03:00
PACKAGE_STRING = "libcommon"
2021-03-29 00:55:19 +03:00
TESTS = test_common
check_PROGRAMS = test_common
test_common_SOURCES = \
test_common.h \
test_common_main.c \
2023-05-22 13:10:12 +03:00
test_fifo_calls.c \
2023-02-09 19:16:04 +03:00
test_list_calls.c \
test_parse.c \
2021-09-06 07:41:49 +03:00
test_string_calls.c \
test_string_calls_unicode.c \
2022-01-20 19:44:49 +03:00
test_os_calls.c \
test_os_calls_signals.c \
2022-01-27 19:23:51 +03:00
test_ssl_calls.c \
test_base64.c \
2024-04-15 19:14:31 +03:00
test_guid.c \
test_scancode.c
2021-03-29 00:55:19 +03:00
2021-04-21 16:09:21 +03:00
test_common_CFLAGS = \
2021-09-06 07:41:49 +03:00
@CHECK_CFLAGS@ \
-D TOP_SRCDIR=\"$(top_srcdir)\"
2021-04-21 16:09:21 +03:00
2021-03-29 00:55:19 +03:00
test_common_LDADD = \
$(top_builddir)/common/libcommon.la \
@CHECK_LIBS@