]> git.0d.be Git - empathy.git/blob - src/Makefile.am
Moved empathy-accounts-dialog from libempathy-gtk to src. (Jonny Lamb)
[empathy.git] / src / Makefile.am
1 AM_CPPFLAGS =                                           \
2         -I$(top_srcdir)                                 \
3         -DPREFIX="\"$(prefix)"\"                        \
4         -DSYSCONFDIR=\""$(sysconfdir)"\"                \
5         -DDATADIR=\""$(datadir)"\"                      \
6         -DPKGDATADIR=\""$(pkgdatadir)"\"                \
7         -DLIBDIR=\""$(libdir)"\"                        \
8         -DLOCALEDIR=\""$(datadir)/locale"\"             \
9         $(EMPATHY_CFLAGS)                               \
10         $(WARN_CFLAGS)
11
12 LDADD =                                                         \
13         $(top_builddir)/libempathy-gtk/libempathy-gtk.la        \
14         $(top_builddir)/libempathy/libempathy.la                \
15         $(top_builddir)/extensions/libemp-extensions.la         \
16         $(EMPATHY_LIBS)
17
18 bin_PROGRAMS =                  \
19         empathy                 \
20         empathy-accounts        \
21         empathy-logs
22
23 empathy_SOURCES =                                                       \
24         empathy.c                                                       \
25         bacon-message-connection.c bacon-message-connection.h           \
26         empathy-chat-window.c empathy-chat-window.h                     \
27         empathy-new-chatroom-dialog.c empathy-new-chatroom-dialog.h     \
28         empathy-status-icon.c empathy-status-icon.h                     \
29         empathy-about-dialog.c empathy-about-dialog.h                   \
30         empathy-chatrooms-window.c empathy-chatrooms-window.h           \
31         empathy-main-window.c empathy-main-window.h                     \
32         empathy-preferences.c empathy-preferences.h                     \
33         empathy-call-window.c empathy-call-window.h                     \
34         ephy-spinner.c ephy-spinner.h                                   \
35         empathy-accounts-dialog.c empathy-accounts-dialog.h
36
37 empathy_accounts_SOURCES = empathy-accounts.c                           \
38         empathy-accounts-dialog.c empathy-accounts-dialog.h
39
40 empathy_logs_SOURCES = empathy-logs.c
41
42 gladedir = $(datadir)/empathy
43 glade_DATA =                                    \
44         empathy-call-window.glade               \
45         empathy-main-window.glade               \
46         empathy-preferences.glade               \
47         empathy-chatrooms-window.glade          \
48         empathy-chat-window.glade               \
49         empathy-new-chatroom-dialog.glade       \
50         empathy-status-icon.glade               \
51         empathy-accounts-dialog.glade
52
53 dist_man_MANS =                 \
54         empathy.1               \
55         empathy-accounts.1
56
57 EXTRA_DIST =                    \
58         $(autostart_DATA)       \
59         $(glade_DATA)
60
61 CLEANFILES = $(BUILT_SOURCES)
62