blob: f86db3ded6700f56e04c7a23dbc38a258a7cd0ab (
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
|
INCLUDES = \
-I$(top_srcdir)/intl \
-I$(top_srcdir)/src/include \
@GTK_CFLAGS@ \
@GNUNETGTK_CFLAGS@
plugindir = $(libdir)/GNUnet
plugin_LTLIBRARIES = \
libgnunetgtkmodule_stats.la
libgnunetgtkmodule_stats_la_SOURCES = \
functions.c functions.h \
statistics.c
libgnunetgtkmodule_stats_la_LIBADD = \
@GTK_LIBS@ @GNUNETGTK_LIBS@ \
$(top_builddir)/src/common/libgnunetgtk_common.la \
-lgnunetutil \
-lgnunetutil_cron \
-lgnunetgetoption_api \
-lgnunetstats_api \
-lgnunetutil_network_client
libgnunetgtkmodule_stats_la_LDFLAGS = \
-export-dynamic -avoid-version -module
|