blob: 480432f865c5569ad1b43e6a4e02ecf525305575 (
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
|
SUBDIRS = .
INCLUDES = \
-I$(top_srcdir)/ \
@GTK_CFLAGS@ \
@GNUNETGTK_CFLAGS@
bin_PROGRAMS = gnunet-gtk
gnunet_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-gtk.c \
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 \
os_installation.c \
peerinfo.c peerinfo.h
gnunet_gtk_LDADD = \
@GTK_LIBS@ \
-lextractor \
-lgnunetutil \
-lgnunetpeerinfo \
-lgnunetfs \
$(INTLLIBS)
gnunet_gtk_LDFLAGS = \
-export-dynamic
|