source: trunk/third/evolution/e-util/Makefile.am @ 19036

Revision 19036, 2.5 KB checked in by ghudson, 21 years ago (diff)
Merge with evolution 1.2.2.
Line 
1SUBDIRS = . ename
2
3imagesdir = $(datadir)/images/evolution
4
5eutilincludedir = $(includedir)/evolution/e-util
6econdincludedir = $(includedir)/evolution/e-conduit
7edb3includedir = $(includedir)/evolution/e-db3util
8
9INCLUDES =                                                              \
10        -I$(top_srcdir)                                                 \
11        -DEVOLUTION_IMAGES=\""$(imagesdir)"\"                           \
12        -DEVOLUTION_CATEGORY_ICONS=\""$(imagesdir)/categories"\"        \
13        -DG_LOG_DOMAIN=\"e-utils\"                                      \
14        $(DB3_CFLAGS)                                                   \
15        $(PISOCK_CFLAGS)                                                \
16        $(E_UTIL_CFLAGS)
17
18privlib_LTLIBRARIES = libeutil.la libedb3util.la libeconduit.la
19noinst_LTLIBRARIES = libeutil-static.la libeconduit-static.la
20
21eutilinclude_HEADERS =                          \
22        e-bonobo-factory-util.h                 \
23        e-categories-master-list-wombat.h       \
24        e-categories-config.h                   \
25        e-component-listener.h                  \
26        e-config-listener.h                     \
27        e-corba-utils.h                         \
28        e-dialog-utils.h                        \
29        e-dialog-widgets.h                      \
30        e-gtk-utils.h                           \
31        e-gui-utils.h                           \
32        e-host-utils.h                          \
33        e-html-utils.h                          \
34        e-iterator.h                            \
35        e-lang-utils.h                          \
36        e-list-iterator.h                       \
37        e-list.h                                \
38        e-memory.h                              \
39        e-mktemp.h                              \
40        e-msgport.h                             \
41        e-passwords.h                           \
42        e-path.h                                \
43        e-proxy.h                               \
44        e-request.h                             \
45        e-sexp.h                                \
46        e-time-utils.h                          \
47        e-url.h                                 \
48        md5-utils.h
49
50libeutil_la_SOURCES =                           \
51        $(eutilinclude_HEADERS)                 \
52        e-bonobo-factory-util.c                 \
53        e-categories-master-list-wombat.c       \
54        e-categories-config.c                   \
55        e-component-listener.c                  \
56        e-config-listener.c                     \
57        e-corba-utils.c                         \
58        e-dialog-utils.c                        \
59        e-dialog-widgets.c                      \
60        e-gtk-utils.c                           \
61        e-gui-utils.c                           \
62        e-host-utils.c                          \
63        e-html-utils.c                          \
64        e-iterator.c                            \
65        e-lang-utils.c                          \
66        e-list-iterator.c                       \
67        e-list.c                                \
68        e-memory.c                              \
69        e-mktemp.c                              \
70        e-msgport.c                             \
71        e-passwords.c                           \
72        e-path.c                                \
73        e-proxy.c                               \
74        e-request.c                             \
75        e-sexp.c                                \
76        e-time-utils.c                          \
77        e-url.c                                 \
78        md5-utils.c
79
80libeutil_la_LIBADD = $(E_UTIL_LIBS)
81
82libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
83libeutil_static_la_LIBADD  = $(libeutil_la_LIBADD)
84libeutil_static_la_LDFLAGS = -all-static
85
86econdinclude_HEADERS =          \
87        e-pilot-map.h           \
88        e-pilot-settings.h      \
89        e-pilot-util.h
90
91pilot_sources = \
92        $(econdinclude_HEADERS) \
93        e-pilot-map.c           \
94        e-pilot-settings.c      \
95        e-pilot-util.c
96
97if ENABLE_PILOT_CONDUITS
98pilot_compile = $(pilot_sources)
99else
100pilot_compile = e-pilot-settings.c e-pilot-settings.h
101endif
102
103libeconduit_la_SOURCES = $(pilot_compile)
104
105libeconduit_static_la_SOURCES = $(libeconduit_la_SOURCES)
106libeconduit_static_la_LDFLAGS = -all-static
107
108EXTRA_DIST = $(pilot_sources)
109
110edb3include_HEADERS =                   \
111        e-db3-utils.h                   \
112        e-dbhash.h
113
114libedb3util_la_SOURCES =                \
115        $(edb3include_HEADERS)          \
116        e-db3-utils.c                   \
117        e-dbhash.c
Note: See TracBrowser for help on using the repository browser.