diff options
Diffstat (limited to 'other/Makefile.inc')
-rw-r--r-- | other/Makefile.inc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/other/Makefile.inc b/other/Makefile.inc new file mode 100644 index 00000000..10ef55a3 --- /dev/null +++ b/other/Makefile.inc | |||
@@ -0,0 +1,18 @@ | |||
1 | noinst_PROGRAMS += DHT_bootstrap | ||
2 | |||
3 | DHT_bootstrap_SOURCES = $(top_srcdir)/other/DHT_bootstrap.c \ | ||
4 | $(top_srcdir)/toxcore/DHT.h \ | ||
5 | $(top_srcdir)/toxcore/friend_requests.h \ | ||
6 | $(top_srcdir)/testing/misc_tools.h \ | ||
7 | $(top_srcdir)/testing/misc_tools.c | ||
8 | |||
9 | DHT_bootstrap_CFLAGS = -I$(top_srcdir)/other \ | ||
10 | $(LIBSODIUM_CFLAGS) | ||
11 | |||
12 | DHT_bootstrap_LDADD = $(LIBSODIUM_LDFLAGS) \ | ||
13 | libtoxcore.la \ | ||
14 | $(LIBSODIUM_LIBS) \ | ||
15 | $(WINSOCK2_LIBS) | ||
16 | |||
17 | EXTRA_DIST += $(top_srcdir)/other/DHTservers \ | ||
18 | $(top_srcdir)/other/tox.png | ||