~ubuntu-branches/ubuntu/precise/telepathy-mission-control-5/precise

« back to all changes in this revision

Viewing changes to util/Makefile.am

Tags: upstream-5.5.0
ImportĀ upstreamĀ versionĀ 5.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
INCLUDES = $(TELEPATHY_CFLAGS) $(GLIB_CFLAGS) -I$(top_srcdir)
 
2
AM_CFLAGS = $(ERROR_CFLAGS)
2
3
 
3
4
bin_PROGRAMS = mc-tool mc-wait-for-name
4
5
 
13
14
man1_MANS = mc-wait-for-name.1
14
15
 
15
16
EXTRA_DIST = \
16
 
    $(man1_MANS:%=%.in) \
17
 
    mc-account-convert.1
 
17
    $(man1_MANS:%=%.in)
18
18
CLEANFILES = $(man1_MANS)
19
19
 
20
20
mc-wait-for-name.1: mc-wait-for-name.1.in Makefile
21
21
        sed -e 's![@]bindir[@]!@bindir@!g' < $< > $@
22
 
 
23
 
if HAVE_GCONF
24
 
 
25
 
bin_PROGRAMS += mc-account-convert
26
 
mc_account_convert_CPPFLAGS = $(GCONF_CFLAGS)
27
 
mc_account_convert_SOURCES = mc-account-convert.c
28
 
mc_account_convert_LDADD = $(GCONF_LIBS) $(TELEPATHY_LIBS) $(top_builddir)/libmcclient/libmcclient.la
29
 
 
30
 
dist_man1_MANS += mc-account-convert.1
31
 
 
32
 
endif