~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to addressbook/libebook/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CLEANFILES=
2
 
 
3
 
include $(top_srcdir)/glib-gen.mak
4
 
glib_enum_headers=e-book-types.h
5
 
glib_enum_output=e-book-enumtypes
6
 
glib_enum_define=E_BOOK
7
 
glib_enum_prefix=e_book
 
2
BUILT_SOURCES=
 
3
 
 
4
ENUM_TYPES = e-book-types.h
 
5
 
 
6
e-book-enumtypes.h: e-book-enumtypes.h.template $(ENUM_TYPES)
 
7
        $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template e-book-enumtypes.h.template $(ENUM_TYPES)) > $@
 
8
 
 
9
e-book-enumtypes.c: e-book-enumtypes.c.template $(ENUM_TYPES)
 
10
        $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template e-book-enumtypes.c.template $(ENUM_TYPES)) > $@
8
11
 
9
12
ENUM_GENERATED = e-book-enumtypes.h e-book-enumtypes.c
10
13
 
83
86
         cp $< $@
84
87
 
85
88
e-name-western-tables.h: e-name-western-tables.h.in
86
 
        ${srcdir}/gen-western-table.py < $< > $@
 
89
        $(AM_V_GEN) ($(PYTHON) ${srcdir}/gen-western-table.py < $< > $@.tmp && mv $@.tmp $@) || rm -f $@.tmp
 
90
 
 
91
BUILT_SOURCES += e-name-western-tables.h
87
92
 
88
93
pkgconfigdir = $(libdir)/pkgconfig
89
94
pkgconfig_DATA = libebook-$(API_VERSION).pc
133
138
CLEANFILES += $(dist_gir_DATA) $(typelib_DATA)
134
139
endif
135
140
 
136
 
BUILT_SOURCES = $(ENUM_GENERATED) $(MARSHAL_GENERATED)
 
141
BUILT_SOURCES += $(ENUM_GENERATED) $(MARSHAL_GENERATED)
137
142
CLEANFILES    += $(BUILT_SOURCES)
138
143
DISTCLEANFILES = $(pkgconfig_DATA)
139
144
 
140
145
EXTRA_DIST =                                            \
 
146
        $(pkgconfig_DATA:-$(API_VERSION).pc=.pc.in)     \
 
147
        e-book-enumtypes.h.template                     \
 
148
        e-book-enumtypes.c.template                     \
141
149
        e-book-marshal.list                             \
142
 
        $(pkgconfig_DATA:-$(API_VERSION).pc=.pc.in)     \
143
150
        e-name-western-tables.h.in                      \
144
151
        gen-western-table.py
145
152