blob: 360214d6280ad89f9296f639f6c2014b1bcffd1a (
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
|
XML_FILES = \
evolution.xml \
evolution-addressbook.xml \
evolution-addressbook-ldap.xml \
evolution-calendar.xml \
evolution-contact-editor.xml \
evolution-event-editor.xml \
evolution-executive-summary.xml \
evolution-mail.xml \
evolution-message-composer.xml \
evolution-subscribe.xml \
evolution-task-editor-dialog.xml
H_FILES = \
evolution.h \
evolution-addressbook.h \
evolution-addressbook-ldap.h \
evolution-contact-editor.h \
evolution-mail.h \
evolution-calendar.h \
evolution-subscribe.h \
evolution-executive-summary.h
uidir = $(datadir)/gnome/ui
ui_DATA = $(XML_FILES)
EXTRA_DIST = $(XML_FILES) $(H_FILES)
BUILT_SOURCES=$(XML_FILES:.xml=.h)
%.h : %.xml
bonobo-ui-extract $^ > $@
|