summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/Makefile.inc
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2016-01-01 00:19:35 -0500
committerMaxim Biro <nurupo.contributions@gmail.com>2016-01-01 00:19:35 -0500
commit6b40a581b1ce036e744c51452bbd6be6c690508f (patch)
treea84b18b278f41c2ef2f0c831afebab449e4361b7 /other/bootstrap_daemon/Makefile.inc
parente1fc8c1d3cca7e915a73cfe44462f71d2938ecba (diff)
Put config-related functions in a separate file
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.
Diffstat (limited to 'other/bootstrap_daemon/Makefile.inc')
-rw-r--r--other/bootstrap_daemon/Makefile.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/other/bootstrap_daemon/Makefile.inc b/other/bootstrap_daemon/Makefile.inc
index eb94f0e7..5dce910e 100644
--- a/other/bootstrap_daemon/Makefile.inc
+++ b/other/bootstrap_daemon/Makefile.inc
@@ -5,7 +5,12 @@ bin_PROGRAMS += tox-bootstrapd
5tox_bootstrapd_SOURCES = \ 5tox_bootstrapd_SOURCES = \
6 ../other/bootstrap_daemon/src/tox-bootstrapd.c \ 6 ../other/bootstrap_daemon/src/tox-bootstrapd.c \
7 ../other/bootstrap_daemon/src/log.c \ 7 ../other/bootstrap_daemon/src/log.c \
8 ../other/bootstrap_daemon/src/log.h 8 ../other/bootstrap_daemon/src/log.h \
9 ../other/bootstrap_daemon/src/config.h \
10 ../other/bootstrap_daemon/src/config.c \
11 ../other/bootstrap_daemon/src/config_defaults.h \
12 ../other/bootstrap_node_packets.h \
13 ../other/bootstrap_node_packets.c
9 14
10tox_bootstrapd_CFLAGS = \ 15tox_bootstrapd_CFLAGS = \
11 -I$(top_srcdir)/other/bootstrap_daemon \ 16 -I$(top_srcdir)/other/bootstrap_daemon \