mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
83d4d8ea5d
I call on the venerable @jin_eld once again to verify that this change is correct.
28 lines
832 B
Makefile
28 lines
832 B
Makefile
if BUILD_DHT_BOOTSTRAP_DAEMON
|
|
|
|
bin_PROGRAMS += tox_bootstrap_daemon
|
|
|
|
tox_bootstrap_daemon_SOURCES = \
|
|
../other/bootstrap_daemon/tox_bootstrap_daemon.c
|
|
|
|
tox_bootstrap_daemon_CFLAGS = \
|
|
-I$(top_srcdir)/other/bootstrap_daemon \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS) \
|
|
$(LIBCONFIG_CFLAGS)
|
|
|
|
tox_bootstrap_daemon_LDADD = \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBCONFIG_LIBS) \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += \
|
|
$(top_srcdir)/other/bootstrap_daemon/conf \
|
|
$(top_srcdir)/other/bootstrap_daemon/tox_bootstrap_daemon.sh
|
|
|