source: trunk/third/evolution/wombat/Makefile.am @ 18142

Revision 18142, 2.5 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18141, which included commits to RCS files with non-trunk default branches.
Line 
1INCLUDES =                                              \
2        -DG_LOG_DOMAIN=\"wombat\"                       \
3        -I$(top_srcdir)/e-util                          \
4        -I$(top_srcdir)                                 \
5        -I$(top_srcdir)/addressbook/backend             \
6        -I$(top_builddir)/addressbook/backend           \
7        -I$(top_srcdir)/calendar                        \
8        -I$(top_srcdir)/calendar                        \
9        -I$(top_builddir)/calendar                      \
10        -I$(top_srcdir)/libical/src/libical             \
11        -I$(top_builddir)/libical/src/libical           \
12        -DEVOLUTION_DATADIR=\""$(datadir)"\"            \
13        -DEVOLUTION_LOCALEDIR=\""$(localedir)"\"        \
14        $(WOMBAT_CFLAGS)
15
16bin_PROGRAMS =  \
17        wombat
18
19WOMBAT_IDL = Evolution-Wombat.idl
20
21WOMBAT_IDL_GENERATED =                          \
22        Evolution-Wombat.h                      \
23        Evolution-Wombat-common.c               \
24        Evolution-Wombat-skels.c                \
25        Evolution-Wombat-stubs.c
26
27$(WOMBAT_IDL_GENERATED): $(WOMBAT_IDL)
28        $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` $(WOMBAT_IDL)
29
30idldir = $(datadir)/idl
31
32idl_DATA = $(WOMBAT_IDL)
33
34wombat_SOURCES =                        \
35        $(WOMBAT_IDL_GENERATED)         \
36        wombat-interface-check.c        \
37        wombat-interface-check.h        \
38        wombat-moniker.c                \
39        wombat-moniker.h                \
40        wombat-private-moniker.c        \
41        wombat-private-moniker.h        \
42        wombat.c
43
44if ENABLE_LDAP
45LDAP_STUFF =                                                            \
46        $(top_builddir)/addressbook/backend/pas/libpasldap.a            \
47        $(LDAP_LIBS)
48endif
49
50wombat_LDADD =                                                          \
51        $(top_builddir)/addressbook/backend/pas/libpasfile.a            \
52        $(DB3_LDADD)                                                    \
53        $(LDAP_STUFF)                                                   \
54        $(top_builddir)/addressbook/backend/pas/libpas.a                \
55        $(top_builddir)/addressbook/backend/ebook/libebook.la           \
56        $(top_builddir)/camel/libcamel.la                               \
57        $(top_builddir)/e-util/ename/libename.la                        \
58        $(top_builddir)/calendar/pcs/libpcsfile.a                       \
59        $(top_builddir)/calendar/pcs/libpcs.a                           \
60        $(top_builddir)/calendar/cal-util/libcal-util.la                \
61        $(top_builddir)/libical/src/libical/libical-evolution.la        \
62        $(top_builddir)/libversit/libversit.a                           \
63        $(top_builddir)/e-util/libedb3util.la                           \
64        $(top_builddir)/e-util/libeutil.la                              \
65        $(top_builddir)/libwombat/libwombat.la                          \
66        $(WOMBAT_LIBS)
67
68oafdir = $(datadir)/oaf
69
70if ENABLE_LDAP
71OAF_IN_FILE=GNOME_Evolution_WombatLDAP.oaf.in
72else
73OAF_IN_FILE=GNOME_Evolution_WombatNOLDAP.oaf.in
74endif
75
76GNOME_Evolution_Wombat.oaf.in: $(OAF_IN_FILE)
77        cp $< $@
78
79oaf_in_files = GNOME_Evolution_Wombat.oaf.in
80oaf_DATA = $(oaf_in_files:.oaf.in=.oaf)
81
82@XML_I18N_MERGE_OAF_RULE@
83
84EXTRA_DIST = $(oaf_DATA) $(oaf_in_files) $(idl_DATA) \
85             GNOME_Evolution_WombatLDAP.oaf.in GNOME_Evolution_WombatNOLDAP.oaf.in
86
87if ENABLE_PURIFY
88PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
89
90all-local: wombat.pure
91
92wombat.pure: wombat
93        @rm -f wombat.pure
94        $(PLINK) $(wombat_LDFLAGS) $(wombat_OBJECTS) $(wombat_LDADD) $(LIBS)
95
96endif
Note: See TracBrowser for help on using the repository browser.