mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
6b40a581b1
bootstrap_node_packets.c was giving an error as it was being included twice and there were no include guards, so part of it was split into bootstrap_node_packets.h.
23 lines
835 B
Makefile
23 lines
835 B
Makefile
bin_PROGRAMS += DHT_bootstrap
|
|
|
|
DHT_bootstrap_SOURCES = ../other/DHT_bootstrap.c \
|
|
../toxcore/DHT.h \
|
|
../toxcore/friend_requests.h \
|
|
../other/bootstrap_node_packets.h \
|
|
../other/bootstrap_node_packets.c
|
|
|
|
DHT_bootstrap_CFLAGS = -I$(top_srcdir)/other \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS)
|
|
|
|
DHT_bootstrap_LDADD = $(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_OBJECTS) \
|
|
$(NACL_LIBS) \
|
|
$(WINSOCK2_LIBS)
|
|
|
|
EXTRA_DIST += $(top_srcdir)/other/DHTnodes \
|
|
$(top_srcdir)/other/tox.png
|