]> git.0d.be Git - empathy.git/blob - src/Makefile.am
Empathy is no more splitted into 2 processes. It makes debugging more
[empathy.git] / src / Makefile.am
1 AM_CPPFLAGS =                                           \
2         -I$(top_srcdir)                                 \
3         -DPREFIX="\"$(prefix)"\"                        \
4         -DSYSCONFDIR=\""$(sysconfdir)"\"                \
5         -DDATADIR=\""$(datadir)"\"                      \
6         -DLIBDIR=\""$(libdir)"\"                        \
7         -DLOCALEDIR=\""$(datadir)/locale"\"             \
8         $(EMPATHY_CFLAGS)                               \
9         $(WARN_CFLAGS)
10
11 LDADD =                                                 \
12         $(top_builddir)/libempathy-gtk/libempathy-gtk.la        \
13         $(EMPATHY_LIBS)
14
15 bin_PROGRAMS =                  \
16         empathy                 \
17         empathy-accounts
18
19 empathy_SOURCES = empathy.c
20 empathy_accounts_SOURCES = empathy-accounts.c
21
22 # Dbus service file
23 servicedir = $(datadir)/dbus-1/services
24 service_in_files = org.gnome.Empathy.Chat.service.in
25 service_DATA = $(service_in_files:.service.in=.service)
26
27 # Rule to make the service file with bindir expanded
28 $(service_DATA): $(service_in_files) Makefile
29         @sed -e "s|\@bindir\@|$(bindir)|" $< > $@
30
31 chandlerdir = $(datadir)/telepathy/managers
32 chandler_DATA = empathy-chat.chandler
33
34 BUILT_SOURCES =                                                 \
35         org.gnome.Empathy.Chat.service
36
37 EXTRA_DIST =                                                    \
38         org.gnome.Empathy.Chat.service.in                       \
39         $(autostart_DATA)                                       \
40         $(chandler_DATA)
41
42 CLEANFILES = $(BUILT_SOURCES)
43