~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to addressbook/libebook/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AM_CPPFLAGS =                                           \
 
1
# The marshallers
 
2
MARSHAL_GENERATED = e-book-marshal.c e-book-marshal.h
 
3
@EVO_MARSHAL_RULE@
 
4
 
 
5
# The library
 
6
lib_LTLIBRARIES = libebook-1.2.la
 
7
 
 
8
libebook_1_2_la_CPPFLAGS = \
 
9
        $(AM_CPPFLAGS)                                  \
2
10
        -DEVOLUTION_LOCALEDIR=\""$(localedir)"\"        \
3
11
        -DG_LOG_DOMAIN=\"libebook\"                     \
4
12
        -I$(top_srcdir)                                 \
8
16
        -I$(top_builddir)/addressbook/libebook          \
9
17
        $(EVOLUTION_ADDRESSBOOK_CFLAGS)
10
18
 
11
 
# The corba stubs and skels
12
 
CORBA_GENERATED_C =                             \
13
 
        Evolution-DataServer-Addressbook-common.c               \
14
 
        Evolution-DataServer-Addressbook-skels.c                \
15
 
        Evolution-DataServer-Addressbook-stubs.c
16
 
CORBA_GENERATED_H =                     \
17
 
        Evolution-DataServer-Addressbook.h
18
 
 
19
 
CORBA_GENERATED = $(CORBA_GENERATED_C) $(CORBA_GENERATED_H)
20
 
 
21
 
idls =                                          \
22
 
        $(srcdir)/../idl/Evolution-DataServer-Addressbook.idl
23
 
 
24
 
idl_flags = $(IDL_INCLUDES)
25
 
 
26
 
$(CORBA_GENERATED_H): $(idls)
27
 
        $(ORBIT_IDL) $(idl_flags) $(srcdir)/../idl/Evolution-DataServer-Addressbook.idl
28
 
$(CORBA_GENERATED_C): $(CORBA_GENERATED_H)
29
 
 
30
 
# The library
31
 
lib_LTLIBRARIES = libebook-1.2.la
32
 
 
33
19
libebook_1_2_la_SOURCES =                               \
34
 
        $(CORBA_GENERATED_C)                            \
35
 
        $(CORBA_GENERATED_H)                            \
 
20
        $(MARSHAL_GENERATED)                            \
 
21
        $(DBUS_GENERATED_H)                             \
36
22
        e-address-western.c                             \
37
 
        e-book-listener.c                               \
38
 
        e-book-listener.h                               \
39
23
        e-book-query.c                                  \
40
 
        e-book-view-listener.c                          \
41
 
        e-book-view-listener.h                          \
42
24
        e-book-view-private.h                           \
43
25
        e-book-view.c                                   \
44
26
        e-book.c                                        \
46
28
        e-destination.c                                 \
47
29
        e-name-western.c                                \
48
30
        e-name-western-tables.h                         \
49
 
        e-vcard.c
 
31
        e-vcard.c                                       \
 
32
        e-error.h
50
33
 
51
34
libebook_1_2_la_LIBADD =                                        \
52
35
        $(top_builddir)/camel/libcamel-1.2.la                   \
78
61
pkgconfigdir = $(libdir)/pkgconfig
79
62
pkgconfig_DATA = libebook-$(API_VERSION).pc
80
63
 
81
 
BUILT_SOURCES = $(CORBA_GENERATED)
 
64
DBUS_GENERATED_H = e-data-book-factory-bindings.h e-data-book-bindings.h e-data-book-view-bindings.h
 
65
%-bindings.h: $(top_srcdir)/addressbook/libedata-book/%.xml
 
66
        @DBUS_BINDING_TOOL@ --mode=glib-client --output=$@ --prefix=$(subst -,_,$*) $^
 
67
 
 
68
BUILT_SOURCES = $(DBUS_GENERATED_H) $(MARSHAL_GENERATED)
82
69
CLEANFILES    = $(BUILT_SOURCES)
83
70
DISTCLEANFILES = $(pkgconfig_DATA)
84
71
 
85
72
EXTRA_DIST =                                            \
 
73
        e-book-marshal.list                             \
86
74
        $(pkgconfig_DATA:-$(API_VERSION).pc=.pc.in)     \
87
75
        e-name-western-tables.h.in                      \
88
76
        gen-western-table.py
89
77
 
90
78
dist-hook:
91
79
        cd $(distdir); rm -f $(BUILT_SOURCES)
 
80
 
 
81
-include $(top_srcdir)/git.mk