blob: d0a40f9852b615985b2a643c133a102ae830a314 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
INCLUDES = \
-I$(top_srcdir)/intl \
-I$(top_srcdir)/src/include \
@GTK_CFLAGS@ \
@GNUNETGTK_CFLAGS@
plugindir = $(libdir)/GNUnet
plugin_LTLIBRARIES = \
libgnunetgtkmodule_daemon.la
libgnunetgtkmodule_daemon_la_SOURCES = \
daemon.c
libgnunetgtkmodule_daemon_la_LIBADD = \
@GTK_LIBS@ @GNUNETGTK_LIBS@ \
$(top_builddir)/src/common/libgnunetgtk_common.la \
-lgnunetutil \
-lgnunetutil_cron \
-lgnunetgetoption_api \
-lgnunetutil_network_client
libgnunetgtkmodule_daemon_la_LDFLAGS = \
-export-dynamic -avoid-version -module
|