blob: 4fde08a4a9fe935611da160287ed715b4336f10c (
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
|
if ENABLE_PILOT_CONDUITS
CONDUIT_SUBDIR=conduit
endif
SUBDIRS = \
util printing gui importers tools $(CONDUIT_SUBDIR)
error_DATA = addressbook-errors.xml
error_i18n = $(error_DATA:.xml=.xml.h)
errordir = $(privdatadir)/errors
%.xml.h: %.xml
$(top_builddir)/e-util/e-error-tool $^
EXTRA_DIST = \
ChangeLog.pre-1-4 \
$(error_DATA)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
BUILT_SOURCES = $(error_i18n)
CLEANFILES = $(BUILT_SOURCES)
|