mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
7d29bd23b9
This update makes sure that the build still works with automake prior to 1.12 and at the same time does not give any warnings or errors with automake 1.14
24 lines
743 B
Makefile
24 lines
743 B
Makefile
if BUILD_DHT_BOOTSTRAP_DAEMON
|
|
|
|
noinst_PROGRAMS += DHT_bootstrap_daemon
|
|
|
|
DHT_bootstrap_daemon_SOURCES = \
|
|
../other/bootstrap_serverdaemon/DHT_bootstrap_daemon.c
|
|
|
|
DHT_bootstrap_daemon_CFLAGS = \
|
|
-I$(top_srcdir)/other/bootstrap_serverdaemon \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(LIBCONFIG_CFLAGS)
|
|
|
|
DHT_bootstrap_daemon_LDADD = \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBCONFIG_LIBS) \
|
|
$(LIBSODIUM_LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += \
|
|
$(top_srcdir)/other/bootstrap_serverdaemon/server.cfg \
|
|
$(top_srcdir)/other/bootstrap_serverdaemon/DHT_bootstrap_daemon.sh
|