blob: b186789d9ee6c6391fdfa7aa5c42283d18517a58 (
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
42
43
44
|
# This Makefile.am is in the public domain
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_egos.c \
gnunet-conversation-gtk_egos.h \
gnunet-conversation-gtk_contacts.c \
gnunet-conversation-gtk_contacts.h \
gnunet-conversation-gtk_get_label.c \
gnunet-conversation-gtk_get_label.h \
gnunet-conversation-gtk_history.c \
gnunet-conversation-gtk_history.h \
gnunet-conversation-gtk_import.c \
gnunet-conversation-gtk_import.h \
gnunet-conversation-gtk_log.c \
gnunet-conversation-gtk_log.h \
gnunet-conversation-gtk_phone.c \
gnunet-conversation-gtk_phone.h \
gnunet-conversation-gtk_visibility.c \
gnunet-conversation-gtk_zones.c \
gnunet-conversation-gtk_zones.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 \
$(INTLLIBS)
gnunet_conversation_gtk_LDFLAGS = \
-export-dynamic
|