toxcore/other/bootstrap_daemon/Makefile.inc

27 lines
834 B
PHP
Raw Normal View History

if BUILD_DHT_BOOTSTRAP_DAEMON
2014-01-26 10:00:31 +08:00
noinst_PROGRAMS += tox_bootstrap_daemon
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
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 \
$(LIBSODIUM_CFLAGS) \
$(NACL_CFLAGS) \
$(LIBCONFIG_CFLAGS)
2014-01-26 10:00:31 +08:00
tox_bootstrap_daemon_LDADD = \
$(LIBSODIUM_LDFLAGS) \
$(NACL_LDFLAGS) \
libtoxcore.la \
$(LIBCONFIG_LIBS) \
$(LIBSODIUM_LIBS) \
$(NACL_LIBS)
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-01-19 18:03:19 +08:00