blob: f2dfdc19d6fd8ed2bbbd01663273e0f931d9da2a (
plain)
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
|
## Process this file with automake to produce Makefile.in
## Created by Anjuta
AM_CPPFLAGS = \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
$(TELEPATHY_KINDLING_CFLAGS)
AM_CFLAGS =\
-Wall\
-g
bin_PROGRAMS = telepathy_kindling
telepathy_kindling_SOURCES = \
main.c \
kindling-connection-manager.h \
kindling-connection-manager.c \
kindling-protocol.c \
kindling-protocol.h \
kindling-connection.c \
kindling-connection.h \
kindling-muc-manager.c \
kindling-muc-manager.h \
kindling-roomlist-manager.c \
kindling-roomlist-manager.h \
kindling-roomlist-channel.c \
kindling-roomlist-channel.h
telepathy_kindling_LDFLAGS = \
-Wl,--export-dynamic
telepathy_kindling_LDADD = $(TELEPATHY_KINDLING_LIBS)
|