From 670a1321e296b1b24e6030f4f36c9e3c5e8a6784 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 27 Jun 2018 11:04:15 +0200 Subject: initial draft of the RDA shared library --- tests/Makefile.am | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/Makefile.am (limited to 'tests/Makefile.am') diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..ffb157e --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,35 @@ +NULL = + +RDA_LIB = -lrda + +TESTS = +DISTCLEANFILES = +XFAIL_TESTS = + +check_PROGRAMS = + +############################# +# Test Loader +############################# + +check_PROGRAMS += test-x2go + +test_x2go_SOURCES = \ + test-x2go.c + +test_x2go_CFLAGS = \ + -Wall -Werror \ + $(LIBRDA_CFLAGS) \ + $(LIBRDA_TESTS_CFLAGS) \ + -I$(top_srcdir) \ + -DBUILD_DIR="\"$(builddir)\"" \ + $(NULL) + + +test_x2go_LDADD = \ + $(LIBRDA_LIBS) \ + $(LIBRDA_TESTS_LIBS) \ + -L$(top_builddir)/src/.libs \ + $(NULL) + +TESTS += test-x2go -- cgit v1.2.3