blob: 6404f4ae8d737505fc3a44934b9c08a059f38677 (
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
|
SUBDIRS = .
INCLUDES = \
-I$(top_srcdir)/ \
-I$(top_srcdir)/src/include \
@GTK_CFLAGS@ \
@GNUNET_CFLAGS@ \
@GLADE_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_advertise-pseudonym.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_create-pseudonym.c \
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-meta-data-context-menu.c \
gnunet-fs-gtk_main-window-namespace-dropdown.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_publish-dialog.c \
gnunet-fs-gtk_publish-edit-dialog.c gnunet-fs-gtk_publish-edit-dialog.h \
gnunet-fs-gtk_namespace_manager.c
gnunet_fs_gtk_LDADD = \
$(top_builddir)/src/lib/libgnunetgtk.la \
@GTK_LIBS@ \
@GLADE_LIBS@ @GNUNET_LIBS@ \
-lextractor \
-lgnunetutil \
-lgnunetfs \
$(INTLLIBS)
gnunet_fs_gtk_LDFLAGS = \
-export-dynamic
EXTRA_DIST = metatypes.c
|