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
17 lines
556 B
Makefile
17 lines
556 B
Makefile
noinst_PROGRAMS += DHT_bootstrap
|
|
|
|
DHT_bootstrap_SOURCES = ../other/DHT_bootstrap.c \
|
|
../toxcore/DHT.h \
|
|
../toxcore/friend_requests.h
|
|
|
|
DHT_bootstrap_CFLAGS = -I$(top_srcdir)/other \
|
|
$(LIBSODIUM_CFLAGS)
|
|
|
|
DHT_bootstrap_LDADD = $(LIBSODIUM_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(WINSOCK2_LIBS)
|
|
|
|
EXTRA_DIST += $(top_srcdir)/other/DHTservers \
|
|
$(top_srcdir)/other/tox.png
|