~ubuntu-branches/ubuntu/karmic/empathy/karmic

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2007-12-04 00:00:31 UTC
  • mto: (6.4.1 sid) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20071204000031-w2os396zoqdbcybt
Tags: upstream-0.21.3
ImportĀ upstreamĀ versionĀ 0.21.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
        empathy-accounts
20
20
 
21
21
libexec_PROGRAMS =              \
22
 
        empathy-call-chandler   \
23
22
        empathy-chat-chandler
24
23
 
25
24
empathy_SOURCES = empathy.c
26
25
empathy_accounts_SOURCES = empathy-accounts.c
27
 
empathy_call_chandler_SOURCES = empathy-call-chandler.c
28
26
empathy_chat_chandler_SOURCES = empathy-chat-chandler.c
29
27
 
30
28
# Dbus service files
31
29
servicedir = $(datadir)/dbus-1/services
32
30
service_DATA =                                                  \
33
 
        org.gnome.Empathy.Chat.service                          \
34
 
        org.gnome.Empathy.Call.service
 
31
        org.gnome.Empathy.Chat.service
 
32
 
35
33
%.service: %.service.in Makefile
36
34
        @sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
37
35
 
39
37
chandler_DATA =                                                 \
40
38
        empathy-chat.chandler
41
39
 
42
 
if HAVE_VOIP
43
 
chandler_DATA += empathy-call.chandler
44
 
endif
45
 
 
46
40
BUILT_SOURCES =                                                 \
47
 
        org.gnome.Empathy.Chat.service                          \
48
 
        org.gnome.Empathy.Call.service
 
41
        $(service_DATA)
49
42
 
50
43
EXTRA_DIST =                                                    \
51
44
        org.gnome.Empathy.Chat.service.in                       \
55
48
 
56
49
CLEANFILES = $(BUILT_SOURCES)
57
50
 
 
51
if HAVE_VOIP
 
52
libexec_PROGRAMS += empathy-call-chandler
 
53
empathy_call_chandler_SOURCES = empathy-call-chandler.c
 
54
service_DATA += org.gnome.Empathy.Call.service
 
55
chandler_DATA += empathy-call.chandler
 
56
endif
 
57