summaryrefslogtreecommitdiff
path: root/testing/Makefile.inc
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-10-05 11:14:06 -0400
committerirungentoo <irungentoo@gmail.com>2013-10-05 11:14:06 -0400
commitac117322a98530c7d211095bf75efd240c2e6763 (patch)
tree92e8e578efe3865ec365548bdcbf944226dbb940 /testing/Makefile.inc
parentb2c5e16132686f05c6726cd41e117656f3f1e636 (diff)
Tox sync added.
Tox sync is a proof of concept bittorrent sync inspired application that uses tox to sync the contents of two folders. Currently only works on POSIX compilant operating systems.
Diffstat (limited to 'testing/Makefile.inc')
-rw-r--r--testing/Makefile.inc18
1 files changed, 17 insertions, 1 deletions
diff --git a/testing/Makefile.inc b/testing/Makefile.inc
index ee68e289..65f9f64c 100644
--- a/testing/Makefile.inc
+++ b/testing/Makefile.inc
@@ -23,7 +23,8 @@ noinst_PROGRAMS += DHT_test \
23 Lossless_UDP_testclient \ 23 Lossless_UDP_testclient \
24 Lossless_UDP_testserver \ 24 Lossless_UDP_testserver \
25 Messenger_test \ 25 Messenger_test \
26 crypto_speed_test 26 crypto_speed_test \
27 tox_sync
27 28
28DHT_test_SOURCES = ../testing/DHT_test.c 29DHT_test_SOURCES = ../testing/DHT_test.c
29 30
@@ -99,4 +100,19 @@ crypto_speed_test_LDADD = \
99 $(NACL_LIBS) \ 100 $(NACL_LIBS) \
100 $(WINSOCK2_LIBS) 101 $(WINSOCK2_LIBS)
101 102
103tox_sync_SOURCES = \
104 ../testing/tox_sync.c
105
106tox_sync_CFLAGS = \
107 $(LIBSODIUM_CFLAGS) \
108 $(NACL_CFLAGS)
109
110tox_sync_LDADD = \
111 $(LIBSODIUM_LDFLAGS) \
112 $(NACL_LDFLAGS) \
113 libtoxcore.la \
114 $(LIBSODIUM_LIBS) \
115 $(NACL_LIBS) \
116 $(WINSOCK2_LIBS)
117
102EXTRA_DIST += $(top_srcdir)/testing/misc_tools.c 118EXTRA_DIST += $(top_srcdir)/testing/misc_tools.c