2013-08-14 02:55:32 +08:00
|
|
|
if BUILD_DHT_BOOTSTRAP_DAEMON
|
|
|
|
|
2014-05-21 09:57:20 +08:00
|
|
|
bin_PROGRAMS += tox_bootstrap_daemon
|
2013-08-14 02:55:32 +08:00
|
|
|
|
2014-01-26 10:00:31 +08:00
|
|
|
tox_bootstrap_daemon_SOURCES = \
|
2014-02-23 06:06:07 +08:00
|
|
|
../other/bootstrap_daemon/tox_bootstrap_daemon.c
|
2013-08-14 02:55:32 +08:00
|
|
|
|
2014-01-26 10:00:31 +08:00
|
|
|
tox_bootstrap_daemon_CFLAGS = \
|
2014-02-23 06:06:07 +08:00
|
|
|
-I$(top_srcdir)/other/bootstrap_daemon \
|
2013-08-14 02:55:32 +08:00
|
|
|
$(LIBSODIUM_CFLAGS) \
|
2013-09-05 18:02:26 +08:00
|
|
|
$(NACL_CFLAGS) \
|
2013-08-14 02:55:32 +08:00
|
|
|
$(LIBCONFIG_CFLAGS)
|
|
|
|
|
2014-01-26 10:00:31 +08:00
|
|
|
tox_bootstrap_daemon_LDADD = \
|
2013-08-14 02:55:32 +08:00
|
|
|
$(LIBSODIUM_LDFLAGS) \
|
2013-09-05 18:02:26 +08:00
|
|
|
$(NACL_LDFLAGS) \
|
2013-08-14 02:55:32 +08:00
|
|
|
libtoxcore.la \
|
|
|
|
$(LIBCONFIG_LIBS) \
|
2013-09-05 18:02:26 +08:00
|
|
|
$(LIBSODIUM_LIBS) \
|
|
|
|
$(NACL_LIBS)
|
2013-08-14 02:55:32 +08:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXTRA_DIST += \
|
2014-02-23 06:06:07 +08:00
|
|
|
$(top_srcdir)/other/bootstrap_daemon/conf \
|
|
|
|
$(top_srcdir)/other/bootstrap_daemon/tox_bootstrap_daemon.sh
|
2014-05-21 09:57:20 +08:00
|
|
|
|