diff options
Diffstat (limited to 'other/bootstrap_serverdaemon/Makefile.inc')
-rw-r--r-- | other/bootstrap_serverdaemon/Makefile.inc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/other/bootstrap_serverdaemon/Makefile.inc b/other/bootstrap_serverdaemon/Makefile.inc new file mode 100644 index 00000000..1320b761 --- /dev/null +++ b/other/bootstrap_serverdaemon/Makefile.inc | |||
@@ -0,0 +1,23 @@ | |||
1 | if BUILD_DHT_BOOTSTRAP_DAEMON | ||
2 | |||
3 | noinst_PROGRAMS += DHT_bootstrap_daemon | ||
4 | |||
5 | DHT_bootstrap_daemon_SOURCES = \ | ||
6 | $(top_srcdir)/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c | ||
7 | |||
8 | DHT_bootstrap_daemon_CFLAGS = \ | ||
9 | -I$(top_srcdir)/other/bootstrap_serverdaemon \ | ||
10 | $(LIBSODIUM_CFLAGS) \ | ||
11 | $(LIBCONFIG_CFLAGS) | ||
12 | |||
13 | DHT_bootstrap_daemon_LDADD = \ | ||
14 | $(LIBSODIUM_LDFLAGS) \ | ||
15 | libtoxcore.la \ | ||
16 | $(LIBCONFIG_LIBS) \ | ||
17 | $(LIBSODIUM_LIBS) | ||
18 | |||
19 | endif | ||
20 | |||
21 | EXTRA_DIST += \ | ||
22 | $(top_srcdir)/other/bootstrap_serverdaemon/server.cfg \ | ||
23 | $(top_srcdir)/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.sh | ||