aboutsummaryrefslogtreecommitdiff
path: root/src/rest/Makefile.am
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2019-03-12 09:59:11 +0100
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2019-03-12 09:59:11 +0100
commit6914bcb2330e626e1990a4dcba00f52211afe313 (patch)
tree524b06d5e6b026f45ee0d0c49021ea9212aea824 /src/rest/Makefile.am
parentd060e299efdf346f4421c3706669b6ac79b54fc0 (diff)
downloadgnunet-6914bcb2330e626e1990a4dcba00f52211afe313.tar.gz
gnunet-6914bcb2330e626e1990a4dcba00f52211afe313.zip
move copying to rest
Diffstat (limited to 'src/rest/Makefile.am')
-rw-r--r--src/rest/Makefile.am15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/rest/Makefile.am b/src/rest/Makefile.am
index 6c23ad2a6..acb95140b 100644
--- a/src/rest/Makefile.am
+++ b/src/rest/Makefile.am
@@ -20,14 +20,27 @@ if USE_COVERAGE
20endif 20endif
21 21
22lib_LTLIBRARIES = \ 22lib_LTLIBRARIES = \
23 libgnunetrest.la 23 libgnunetrest.la
24 24
25libexec_PROGRAMS = \ 25libexec_PROGRAMS = \
26 gnunet-rest-server 26 gnunet-rest-server
27 27
28plugin_LTLIBRARIES = libgnunet_plugin_rest_copying.la
29
28EXTRA_DIST = \ 30EXTRA_DIST = \
29 rest.conf 31 rest.conf
30 32
33libgnunet_plugin_rest_copying_la_SOURCES = \
34 plugin_rest_copying.c
35libgnunet_plugin_rest_copying_la_LIBADD = \
36 libgnunetrest.la \
37 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
38 $(LTLIBINTL) -lmicrohttpd
39libgnunet_plugin_rest_copying_la_LDFLAGS = \
40 $(GN_PLUGIN_LDFLAGS)
41
42
43
31gnunet_rest_server_SOURCES = \ 44gnunet_rest_server_SOURCES = \
32 gnunet-rest-server.c 45 gnunet-rest-server.c
33 46