aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ats/Makefile.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ats/Makefile.am b/src/ats/Makefile.am
index 319c6367a..f2fe12b44 100644
--- a/src/ats/Makefile.am
+++ b/src/ats/Makefile.am
@@ -13,6 +13,10 @@ if USE_COVERAGE
13 AM_CFLAGS = -fprofile-arcs -ftest-coverage 13 AM_CFLAGS = -fprofile-arcs -ftest-coverage
14endif 14endif
15 15
16if HAVE_LIBGLPK
17 GN_LIBGLPK = -lglpk
18endif
19
16lib_LTLIBRARIES = libgnunetats.la 20lib_LTLIBRARIES = libgnunetats.la
17 21
18libgnunetats_la_SOURCES = \ 22libgnunetats_la_SOURCES = \
@@ -39,6 +43,7 @@ gnunet_service_ats_SOURCES = \
39gnunet_service_ats_LDADD = \ 43gnunet_service_ats_LDADD = \
40 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 44 $(top_builddir)/src/statistics/libgnunetstatistics.la \
41 $(top_builddir)/src/util/libgnunetutil.la \ 45 $(top_builddir)/src/util/libgnunetutil.la \
46 $(GN_LIBGLPK) \
42 $(GN_LIBINTL) 47 $(GN_LIBINTL)
43 48
44 49