aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-01-11 12:41:23 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-01-11 12:41:23 +0000
commitd36ea67729b309be186660bada3d795950adef3b (patch)
treedfeeb69c95d1eaf00adc6f38fb78bcf97563bc7e
parenta068d3a7e4b75a913ccdc4f4606a470c30d5f9e3 (diff)
downloadgnunet-d36ea67729b309be186660bada3d795950adef3b.tar.gz
gnunet-d36ea67729b309be186660bada3d795950adef3b.zip
adding glpk to the makefile
-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