blob: afddc653256a7b56eb679a6e2a5ac5ecab527ccc (
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
|
SUBDIRS = .
AM_CPPFLAGS = \
-I$(top_srcdir)/ \
-I$(top_srcdir)/src/include \
@GTK_CFLAGS@ \
@GNUNET_CFLAGS@ \
@GLADE_CFLAGS@
if HAVE_CONVERSATION
bin_PROGRAMS = gnunet-conversation-gtk
endif
gnunet_conversation_gtk_SOURCES = \
gnunet-conversation-gtk.c \
gnunet-conversation-gtk.h \
gnunet-conversation-gtk_phone.c \
gnunet-conversation-gtk_phone.h \
gnunet-conversation-gtk_contacts.c \
gnunet-conversation-gtk_contacts.h \
gnunet-conversation-gtk_history.c \
gnunet-conversation-gtk_history.h \
gnunet-conversation-gtk_about.c
gnunet_conversation_gtk_LDADD = \
$(top_builddir)/src/lib/libgnunetgtk.la \
@GTK_LIBS@ \
@GLADE_LIBS@ @GNUNET_LIBS@ \
-lgnunetutil -lgnunetidentity -lgnunetconversation -lgnunetspeaker -lgnunetmicrophone -lgnunetnamestore -lgnunetgnsrecord -lgnunetgns -lgnunetfs -lextractor \
$(INTLLIBS)
gnunet_conversation_gtk_LDFLAGS = \
-export-dynamic
|