blob: 1bca55732f2f7c32894bd6f4c493a7c70dbccd47 (
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
|
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 = \
about.c \
common.c common.h \
download.c download.h \
edit_publish_dialog.c edit_publish_dialog.h \
fs_event_handler.c fs_event_handler.h \
fs_anonymity_spin_buttons.c \
gnunet-fs-gtk.c gnunet-fs-gtk.h \
main_window_create_pseudonym.c \
main_window_file_download.c \
main_window_file_publish.c \
main_window_file_search.c \
main_window_open_directory.c \
main_window_adv_pseudonym.c \
main_window_view_toggles.c
gnunet_fs_gtk_LDADD = \
$(top_builddir)/src/lib/libgnunetgtk.la \
@GTK_LIBS@ \
@GLADE_LIBS@ \
-lextractor \
-lgnunetutil \
-lgnunetfs \
$(INTLLIBS)
gnunet_fs_gtk_LDFLAGS = \
-export-dynamic
|