* tests: Update for the camel changes. * Makefile.am (SUBDIRS): Remove tests. They aren't terribly useful/interesting any more for the most part, and they frequently don't compile. svn path=/trunk/; revision=2636
38 lines
486 B
Makefile
38 lines
486 B
Makefile
changelogs = \
|
|
ChangeLog
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
$(changelogs) \
|
|
README \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
NEWS
|
|
|
|
SUBDIRS = \
|
|
intl \
|
|
macros \
|
|
data \
|
|
e-util \
|
|
widgets \
|
|
shell \
|
|
libibex \
|
|
camel \
|
|
filter \
|
|
composer \
|
|
mail \
|
|
libical \
|
|
libversit \
|
|
addressbook \
|
|
calendar \
|
|
wombat \
|
|
art \
|
|
default_user \
|
|
po
|
|
|
|
dist-hook:
|
|
for subdir in intl ; do \
|
|
mkdir $(distdir)/$$subdir ; \
|
|
cp -pr $(srcdir)/$$subdir $(distdir) ; \
|
|
done
|