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

Revision 19197, 2.6 KB checked in by ghudson, 21 years ago (diff)
Merge with evolution 1.2.4.
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        e-xml-hash-utils.h                      \
49        md5-utils.h
50
51libeutil_la_SOURCES =                           \
52        $(eutilinclude_HEADERS)                 \
53        e-bonobo-factory-util.c                 \
54        e-categories-master-list-wombat.c       \
55        e-categories-config.c                   \
56        e-component-listener.c                  \
57        e-config-listener.c                     \
58        e-corba-utils.c                         \
59        e-dialog-utils.c                        \
60        e-dialog-widgets.c                      \
61        e-gtk-utils.c                           \
62        e-gui-utils.c                           \
63        e-host-utils.c                          \
64        e-html-utils.c                          \
65        e-iterator.c                            \
66        e-lang-utils.c                          \
67        e-list-iterator.c                       \
68        e-list.c                                \
69        e-memory.c                              \
70        e-mktemp.c                              \
71        e-msgport.c                             \
72        e-passwords.c                           \
73        e-path.c                                \
74        e-proxy.c                               \
75        e-request.c                             \
76        e-sexp.c                                \
77        e-time-utils.c                          \
78        e-url.c                                 \
79        e-xml-hash-utils.c                      \
80        md5-utils.c
81
82libeutil_la_LIBADD = $(E_UTIL_LIBS)
83
84libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
85libeutil_static_la_LIBADD  = $(libeutil_la_LIBADD)
86libeutil_static_la_LDFLAGS = -all-static
87
88econdinclude_HEADERS =          \
89        e-pilot-map.h           \
90        e-pilot-settings.h      \
91        e-pilot-util.h
92
93pilot_sources = \
94        $(econdinclude_HEADERS) \
95        e-pilot-map.c           \
96        e-pilot-settings.c      \
97        e-pilot-util.c
98
99if ENABLE_PILOT_CONDUITS
100pilot_compile = $(pilot_sources)
101else
102pilot_compile = e-pilot-settings.c e-pilot-settings.h
103endif
104
105libeconduit_la_SOURCES = $(pilot_compile)
106
107libeconduit_static_la_SOURCES = $(libeconduit_la_SOURCES)
108libeconduit_static_la_LDFLAGS = -all-static
109
110EXTRA_DIST = $(pilot_sources)
111
112edb3include_HEADERS =                   \
113        e-db3-utils.h                   \
114        e-dbhash.h
115
116libedb3util_la_SOURCES =                \
117        $(edb3include_HEADERS)          \
118        e-db3-utils.c                   \
119        e-dbhash.c
Note: See TracBrowser for help on using the repository browser.