aboutsummaryrefslogtreecommitdiff
path: root/src/testbed
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-11-30 17:17:49 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-11-30 17:17:49 +0000
commit3d6db893ead2345c2d2b6ccce27c25baa4266970 (patch)
tree465797bdd7f168e57b721c8f863507889127864b /src/testbed
parent10460200168c53be3573c0761a6a0705b08ea5cb (diff)
downloadgnunet-3d6db893ead2345c2d2b6ccce27c25baa4266970.tar.gz
gnunet-3d6db893ead2345c2d2b6ccce27c25baa4266970.zip
- testing build system - WITH_LL
Diffstat (limited to 'src/testbed')
-rw-r--r--src/testbed/Makefile.am14
-rw-r--r--src/testbed/ll_master.c6
2 files changed, 18 insertions, 2 deletions
diff --git a/src/testbed/Makefile.am b/src/testbed/Makefile.am
index 1fdbc616f..a4adb026d 100644
--- a/src/testbed/Makefile.am
+++ b/src/testbed/Makefile.am
@@ -9,6 +9,10 @@ if USE_COVERAGE
9 XLIB = -lgcov 9 XLIB = -lgcov
10endif 10endif
11 11
12if WITH_LL
13 ll_binaries = ll-master
14endif
15
12libexecdir= $(pkglibdir)/libexec/ 16libexecdir= $(pkglibdir)/libexec/
13 17
14pkgcfgdir= $(pkgdatadir)/config.d/ 18pkgcfgdir= $(pkgdatadir)/config.d/
@@ -21,7 +25,8 @@ libexec_PROGRAMS = \
21 gnunet-helper-testbed 25 gnunet-helper-testbed
22 26
23noinst_PROGRAMS = \ 27noinst_PROGRAMS = \
24 gnunet-testbed-profiler 28 gnunet-testbed-profiler \
29 $(ll_binaries)
25 30
26gnunet_service_testbed_SOURCES = \ 31gnunet_service_testbed_SOURCES = \
27 gnunet-service-testbed.c 32 gnunet-service-testbed.c
@@ -53,6 +58,11 @@ gnunet_helper_testbed_DEPENDENCIES = \
53 gnunet-service-testbed.$(OBJEXT) \ 58 gnunet-service-testbed.$(OBJEXT) \
54 libgnunettestbed.la 59 libgnunettestbed.la
55 60
61ll_master_SOURCES = \
62 ll_master.c
63ll_master_LDADD = $(XLIB) \
64 $(LTLIBINTL) -lz
65
56lib_LTLIBRARIES = \ 66lib_LTLIBRARIES = \
57 libgnunettestbed.la 67 libgnunettestbed.la
58 68
@@ -262,4 +272,4 @@ EXTRA_DIST = \
262 test_testbed_api_testbed_run_topologyfromfile.conf \ 272 test_testbed_api_testbed_run_topologyfromfile.conf \
263 test_testbed_api_testbed_run_topologyscalefree.conf \ 273 test_testbed_api_testbed_run_topologyscalefree.conf \
264 overlay_topology.txt \ 274 overlay_topology.txt \
265 sample_hosts.txt \ No newline at end of file 275 sample_hosts.txt
diff --git a/src/testbed/ll_master.c b/src/testbed/ll_master.c
new file mode 100644
index 000000000..4eca0e865
--- /dev/null
+++ b/src/testbed/ll_master.c
@@ -0,0 +1,6 @@
1#include <llapi.h>
2
3int main()
4{
5 return 0;
6}