blob: 7f97b4efe3f22331869243d2d338c7fac8d6d57d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# This Makefile.am is in the public domain
SUBDIRS = .
AM_CPPFLAGS = \
-I$(top_srcdir)/ \
-I$(top_srcdir)/src/include
if MINGW
WINLIBS = -lregex
endif
bin_PROGRAMS = gnunet-setup
gnunet_setup_SOURCES = \
gnunet-setup.c gnunet-setup.h \
gnunet-setup-options.c gnunet-setup-options.h \
gnunet-setup-transport-plugins.c \
gnunet-setup-transport-test.c gnunet-setup-transport-test.h \
gnunet-setup-transport-http.c \
gnunet-setup-transport-https.c \
gnunet-setup-transport-tcp.c \
gnunet-setup-transport-udp.c \
gnunet-setup-datastore-plugins.c \
gnunet-setup-datastore-config.c \
gnunet-setup-datacache-plugins.c \
gnunet-setup-datacache-config.c \
gnunet-setup-exit-services.c gnunet-setup-exit-services.h \
gnunet-setup-namestore-plugins.c \
gnunet-setup-namestore-config.c \
gnunet-setup-hostlist-editing.c \
gnunet-setup-hostlist-server.c
gnunet_setup_LDADD = \
$(top_builddir)/src/lib/libgnunetgtk.la \
@GTK_LIBS@ @GNUNET_LIBS@ @GLADE_LIBS@ \
$(WINLIBS) \
-lgnunetutil -lgnunetnatauto \
$(INTLLIBS)
gnunet_setup_CFLAGS = \
@GTK_CFLAGS@ \
@GNUNET_CFLAGS@ \
@GLADE_CFLAGS@
gnunet_setup_LDFLAGS = \
-export-dynamic
|