blob: 906b29360154041c9db2d8a7b7984bf5765a0182 (
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
45
46
47
48
49
50
51
52
53
54
|
SUBDIRS = .
INCLUDES = \
-I$(top_srcdir)/ \
-I$(top_srcdir)/src/include \
@GTK_CFLAGS@ \
@GNUNET_CFLAGS@ \
@GLADE_CFLAGS@ \
@unique_CFLAGS@
bin_PROGRAMS = gnunet-fs-gtk
gnunet_fs_gtk_SOURCES = \
gnunet-fs-gtk.c gnunet-fs-gtk.h \
gnunet-fs-gtk_about.c \
gnunet-fs-gtk_anonymity-widgets.c gnunet-fs-gtk_anonymity-widgets.h \
gnunet-fs-gtk_common.c gnunet-fs-gtk_common.h \
gnunet-fs-gtk_download-save-as.c gnunet-fs-gtk_download-save-as.h \
gnunet-fs-gtk_event-handler.c gnunet-fs-gtk_event-handler.h \
gnunet-fs-gtk_main-window-connection.c \
gnunet-fs-gtk_main-window-meta-data-context-menu.c \
gnunet-fs-gtk_main-window-search.c \
gnunet-fs-gtk_main-window-view-toggles.c \
gnunet-fs-gtk_open-directory.c \
gnunet-fs-gtk_open-uri.c gnunet-fs-gtk_open-uri.h \
gnunet-fs-gtk_unindex.c gnunet-fs-gtk_unindex.h \
gnunet-fs-gtk_publish-dialog.c \
gnunet-fs-gtk_publish-edit-dialog.c gnunet-fs-gtk_publish-edit-dialog.h
gnunet_fs_gtk_LDADD = \
$(top_builddir)/src/lib/libgnunetgtk.la \
@GTK_LIBS@ \
@GLADE_LIBS@ @GNUNET_LIBS@ @unique_LIBS@ \
-lextractor \
-lgnunetutil \
-lgnunetarm \
-lgnunetdnsparser \
-lgnunetfs \
-lgnunetgns \
-lgnunetgnsrecord \
-lgnunetnamestore \
-lgnunetidentity \
$(INTLLIBS)
gnunet_fs_gtk_LDFLAGS = \
-export-dynamic
pkgcfgdir= $(prefix)/share/gnunet-gtk/config.d/
pkgcfg_DATA = \
gnunet-fs-gtk.conf
EXTRA_DIST = metatypes.c \
$(pkgcfg_DATA)
|