blob: 3db3ffeddb930cce4c091e6035617d5cf9e45d05 (
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
|
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-about.c \
gnunet-fs-gtk-common.c gnunet-fs-gtk-common.h \
gnunet-fs-gtk-download.c gnunet-fs-gtk-download.h \
gnunet-fs-gtk-edit_publish_dialog.c gnunet-fs-gtk-edit_publish_dialog.h \
gnunet-fs-gtk-event_handler.c gnunet-fs-gtk-event_handler.h \
gnunet-fs-gtk-anonymity_spin_buttons.c gnunet-fs-gtk-anonymity_spin_buttons.h \
gnunet-fs-gtk-main_window_meta_data_context_menu.c \
gnunet-fs-gtk.c gnunet-fs-gtk.h \
gnunet-fs-gtk-main_window_create_pseudonym.c \
gnunet-fs-gtk-main_window_file_download.c \
gnunet-fs-gtk-main_window_file_publish.c \
gnunet-fs-gtk-main_window_namespace.c \
gnunet-fs-gtk-main_window_open_directory.c \
gnunet-fs-gtk-main_window_adv_pseudonym.c \
gnunet-fs-gtk-main_window_view_toggles.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
|