blob: ffa992309346b99b0de8176b48d932024fd2f176 (
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
|
changelogs = \
ChangeLog
EXTRA_DIST = \
AUTHORS \
$(changelogs) \
README \
HACKING \
MAINTAINERS \
NEWS
SUBDIRS = \
intl \
po \
macros \
data \
e-util \
widgets \
shell \
libibex \
camel \
filter \
composer \
mail \
tests \
addressbook \
libical \
libversit
# Add this when the calendar builds.
# calendar
dist-hook:
for subdir in intl ; do \
mkdir $(distdir)/$$subdir ; \
cp -pr $(srcdir)/$$subdir $(distdir) ; \
done
|