aboutsummaryrefslogtreecommitdiff
path: root/src/template
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-02 08:54:18 +0000
committerChristian Grothoff <christian@grothoff.org>2015-06-02 08:54:18 +0000
commitedb4ddf051d91a2169d46f07b1bfea6df4d216bb (patch)
treee3b1a1095ece34ca21a420a290ad740663ec36a5 /src/template
parenta2417d5b3fc632fb1bacca6594c50a0ef7ffd23a (diff)
downloadgnunet-edb4ddf051d91a2169d46f07b1bfea6df4d216bb.tar.gz
gnunet-edb4ddf051d91a2169d46f07b1bfea6df4d216bb.zip
-noinst-ing non-functional binaries/libraries that just exist as examples/templates
Diffstat (limited to 'src/template')
-rw-r--r--src/template/Makefile.am18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/template/Makefile.am b/src/template/Makefile.am
index b235109bc..bdd5d6ebf 100644
--- a/src/template/Makefile.am
+++ b/src/template/Makefile.am
@@ -9,27 +9,30 @@ dist_pkgcfg_DATA = \
9 template.conf 9 template.conf
10 10
11if MINGW 11if MINGW
12 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 12 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
13endif 13endif
14 14
15if USE_COVERAGE 15if USE_COVERAGE
16 AM_CFLAGS = -fprofile-arcs -ftest-coverage 16 AM_CFLAGS = -fprofile-arcs -ftest-coverage
17endif 17endif
18 18
19bin_PROGRAMS = \ 19# Note: In a real installation,
20 gnunet-template 20# bin_PROGRAMS should be used for gnunet-template
21# libexec_PROGRAMS should be used for gnunet-service-template
21 22
22libexec_PROGRAMS = \ 23noinst_PROGRAMS = \
24 gnunet-template \
23 gnunet-service-template 25 gnunet-service-template
24 26
27
25gnunet_template_SOURCES = \ 28gnunet_template_SOURCES = \
26 gnunet-template.c 29 gnunet-template.c
27gnunet_template_LDADD = \ 30gnunet_template_LDADD = \
28 $(top_builddir)/src/util/libgnunetutil.la \ 31 $(top_builddir)/src/util/libgnunetutil.la \
29 $(GN_LIBINTL) 32 $(GN_LIBINTL)
30 33
31gnunet_service_template_SOURCES = \ 34gnunet_service_template_SOURCES = \
32 gnunet-service-template.c 35 gnunet-service-template.c
33gnunet_service_template_LDADD = \ 36gnunet_service_template_LDADD = \
34 $(top_builddir)/src/util/libgnunetutil.la \ 37 $(top_builddir)/src/util/libgnunetutil.la \
35 $(GN_LIBINTL) 38 $(GN_LIBINTL)
@@ -46,5 +49,4 @@ endif
46test_template_api_SOURCES = \ 49test_template_api_SOURCES = \
47 test_template_api.c 50 test_template_api.c
48test_template_api_LDADD = \ 51test_template_api_LDADD = \
49 $(top_builddir)/src/util/libgnunetutil.la 52 $(top_builddir)/src/util/libgnunetutil.la
50