aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/Makefile.am
blob: e6182ce2b7d055539c355c549e877baf4d398453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
eutilincludedir = $(privincludedir)/e-util
econdincludedir = $(privincludedir)/e-conduit

INCLUDES =                              \
    -I$(top_srcdir)                         \
    -DEVOLUTION_IMAGES=\""$(imagesdir)"\"               \
    -DEVOLUTION_ICONSDIR=\""$(imagesdir)"\"             \
    -DEVOLUTION_CATEGORY_ICONS=\""$(imagesdir)/categories"\"    \
    -DEVOLUTION_PLUGINDIR=\""$(plugindir)"\"            \
    -DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\"            \
    -DG_LOG_DOMAIN=\"e-utils\"                  \
    $(GNOME_PILOT_CFLAGS)                       \
    $(E_UTIL_CFLAGS)

privlib_LTLIBRARIES = libeutil.la libeconduit.la

eutilinclude_HEADERS =              \
    e-account-list.h            \
    e-account.h             \
    e-bconf-map.h               \
    e-categories-config.h           \
    e-categories-master-list-wombat.h   \
    e-component-listener.h          \
    e-config.h              \
    e-config-listener.h         \
    e-corba-utils.h             \
    e-dialog-utils.h            \
    e-dialog-widgets.h          \
    e-error.h               \
    e-event.h               \
    e-folder-map.h              \
    e-fsutils.h             \
    e-gtk-utils.h               \
    e-gui-utils.h               \
    e-html-utils.h              \
    e-icon-factory.h            \
    e-import.h              \
    e-iterator.h                \
    e-list-iterator.h           \
    e-list.h                \
    e-menu.h                \
    e-mktemp.h              \
    e-print.h               \
    e-plugin.h              \
    e-popup.h               \
    e-profile-event.h           \
    e-request.h             \
    e-signature.h               \
    e-signature-list.h          \
    e-time-utils.h              \
    e-uid.h                 \
    md5-utils.h

libeutil_la_SOURCES =               \
    $(MARSHAL_GENERATED)            \
    $(eutilinclude_HEADERS)         \
    e-account-list.c            \
    e-account.c             \
    e-bconf-map.c               \
    e-categories-config.c           \
    e-categories-master-list-wombat.c   \
    e-component-listener.c          \
    e-config.c              \
    e-config-listener.c         \
    e-corba-utils.c             \
    e-dialog-utils.c            \
    e-dialog-widgets.c          \
    e-error.c               \
    e-event.c               \
    e-folder-map.c              \
    e-fsutils.c             \
    e-gtk-utils.c               \
    e-gui-utils.c               \
    e-html-utils.c              \
    e-icon-factory.c            \
    e-import.c              \
    e-iterator.c                \
    e-list-iterator.c           \
    e-list.c                \
    e-menu.c                \
    e-mktemp.c              \
    e-plugin.c              \
    e-popup.c               \
    e-print.c               \
    e-profile-event.c           \
    e-request.c             \
    e-signature.c               \
    e-signature-list.c          \
    e-time-utils.c              \
    e-uid.c                 \
    eggtrayicon.c               \
    eggtrayicon.h               \
    md5-utils.c

MARSHAL_GENERATED = e-util-marshal.c e-util-marshal.h
@EVO_MARSHAL_RULE@

libeutil_la_LIBADD = $(E_UTIL_LIBS)

econdinclude_HEADERS =      \
    e-pilot-map.h       \
    e-pilot-util.h

pilot_sources = \
    $(econdinclude_HEADERS) \
    e-pilot-map.c       \
    e-pilot-util.c

if ENABLE_PILOT_CONDUITS
pilot_compile = $(pilot_sources)
else
pilot_compile = md5-utils.c
endif

libeconduit_la_SOURCES = $(pilot_compile)

error_DATA = e-system.error
errordir = $(privdatadir)/errors
@EVO_PLUGIN_RULE@

EXTRA_DIST =                \
    e-system.error.xml      \
    $(pilot_sources)        \
    ChangeLog.pre-1-4       \
    e-util-marshal.list

BUILT_SOURCES = $(MARSHAL_GENERATED) $(error_DATA)
CLEANFILES    = $(BUILT_SOURCES)

dist-hook:
    cd $(distdir); rm -f $(BUILT_SOURCES)