summaryrefslogtreecommitdiff
path: root/auto_tests/Makefile.inc
diff options
context:
space:
mode:
authorjin-eld <jin at mediatomb dot cc>2013-08-30 13:35:48 +0300
committerjin-eld <jin at mediatomb dot cc>2013-09-01 20:39:02 +0300
commit7d29bd23b99304b8f504dcc7e086a9a3d58443e9 (patch)
tree8fceb471900f3958f5574b55ec110ff92d4c29e4 /auto_tests/Makefile.inc
parentc9116310c828e9a4a029007a55dcd5ae1feb56b2 (diff)
Forward compatibility with automake 1.14
This update makes sure that the build still works with automake prior to 1.12 and at the same time does not give any warnings or errors with automake 1.14
Diffstat (limited to 'auto_tests/Makefile.inc')
-rw-r--r--auto_tests/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/Makefile.inc b/auto_tests/Makefile.inc
index bd883a79..199b61e9 100644
--- a/auto_tests/Makefile.inc
+++ b/auto_tests/Makefile.inc
@@ -5,7 +5,7 @@ TESTS = messenger_autotest crypto_test
5check_PROGRAMS = messenger_autotest crypto_test 5check_PROGRAMS = messenger_autotest crypto_test
6 6
7messenger_autotest_SOURCES = \ 7messenger_autotest_SOURCES = \
8 $(top_srcdir)/auto_tests/messenger_test.c 8 ../auto_tests/messenger_test.c
9 9
10messenger_autotest_CFLAGS = \ 10messenger_autotest_CFLAGS = \
11 $(LIBSODIUM_CFLAGS) \ 11 $(LIBSODIUM_CFLAGS) \
@@ -18,7 +18,7 @@ messenger_autotest_LDADD = \
18 $(CHECK_LIBS) 18 $(CHECK_LIBS)
19 19
20 20
21crypto_test_SOURCES = $(top_srcdir)/auto_tests/crypto_test.c 21crypto_test_SOURCES = ../auto_tests/crypto_test.c
22 22
23crypto_test_CFLAGS = $(LIBSODIUM_CFLAGS) \ 23crypto_test_CFLAGS = $(LIBSODIUM_CFLAGS) \
24 $(CHECK_CFLAGS) 24 $(CHECK_CFLAGS)