aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 03870ac4746f2245360221d18daf38adaf1d3f0a (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
132
133
134
135
136
137
138
139
ACLOCAL_AMFLAGS=-I m4

pkgconfigdir = $(libdir)/pkgconfig
INTERFACE_VERSION=3.0

if ENABLE_GTK3
%-$(INTERFACE_VERSION).pc: %.pc
     cp $< $@

pkgconfig_DATA =                    \
    evolution-calendar-$(INTERFACE_VERSION).pc  \
    evolution-mail-$(INTERFACE_VERSION).pc      \
    evolution-plugin-$(INTERFACE_VERSION).pc    \
    evolution-shell-$(INTERFACE_VERSION).pc
else
pkgconfig_DATA =                \
    evolution-calendar.pc           \
    evolution-mail.pc           \
    evolution-plugin.pc         \
    evolution-shell.pc
endif   

EXTRA_DIST =            \
    AUTHORS         \
    COPYING-DOCS        \
    COPYING.LGPL2       \
    COPYING.LGPL3       \
    COPYING.OPENLDAP    \
    README          \
    HACKING         \
    MAINTAINERS     \
    NEWS            \
    NEWS-1.0        \
    marshal.mk      \
    iconv-detect.c      \
    plugin.mk       \
    intltool-merge.in   \
    intltool-update.in  \
    intltool-extract.in \
    evolution-zip.in    \
    gnome-doc-utils.make    \
    gtk-doc.make        \
    $(pkgconfig_DATA:.pc=.pc.in)

if ENABLE_SMIME
SMIME_SUBDIR=smime
endif

if WITH_HELP
HELP_SUBDIR=help
endif

# For maintainers only.
if GLADE_CATALOG
MAINT_SUBDIR=maint
endif

SUBDIRS =           \
    m4          \
    data            \
    smclient        \
    libart_lgpl     \
    libgnomecanvas      \
    e-util          \
    a11y            \
    filter          \
    widgets         \
    shell           \
    $(SMIME_SUBDIR)     \
    em-format       \
    addressbook     \
    composer        \
    mail            \
    calendar        \
    capplet         \
    art         \
    plugins         \
    modules         \
    $(MAINT_SUBDIR)     \
    doc         \
    ui          \
    views           \
    po          \
    sounds          \
    $(HELP_SUBDIR)

DISTCLEANFILES =            \
    $(builddir)/iconv-detect.h

MAINTAINERCLEANFILES =          \
    $(srcdir)/INSTALL       \
    $(srcdir)/aclocal.m4        \
    $(srcdir)/autoscan.log      \
    $(srcdir)/compile       \
    $(srcdir)/config.guess      \
    $(srcdir)/config.h.in       \
    $(srcdir)/config.sub        \
    $(srcdir)/configure.scan    \
    $(srcdir)/depcomp       \
    $(srcdir)/install-sh        \
    $(srcdir)/ltmain.sh     \
    $(srcdir)/missing       \
    $(srcdir)/mkinstalldirs     \
    $(srcdir)/gnome-doc-utils.make  \
    $(srcdir)/gtk-doc.make      \
    $(srcdir)/m4/gnome-doc-utils.m4 \
    $(srcdir)/m4/gtk-doc.m4     \
    $(srcdir)/m4/intltool.m4    \
    $(srcdir)/m4/libtool.m4     \
    $(srcdir)/m4/ltoptions.m4   \
    $(srcdir)/m4/ltsugar.m4     \
    $(srcdir)/m4/ltversion.m4   \
    $(srcdir)/m4/lt~obsolete.m4

# Scrollkeeper must be disabled for distcheck to work because
# distcheck uses a custom prefix.  See GNOME bug #354357.
DISTCHECK_CONFIGURE_FLAGS =     \
    --enable-gtk-doc        \
    --disable-scrollkeeper      \
    --enable-test-component     \
    --with-help

# Generate a ChangeLog file from 'git log'
dist-hook:
    @if test -d "$(srcdir)/.git"; \
    then \
        echo Creating ChangeLog && \
        ( cd "$(top_srcdir)" && \
          echo '# Generated by Makefile. Do not edit.'; echo; \
          $(top_srcdir)/missing --run git log --stat \
          EVOLUTION_2_30_0..) > ChangeLog.tmp \
        && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
        || ( rm -f ChangeLog.tmp ; \
             echo Failed to generate ChangeLog >&2 ); \
    else \
        echo A git clone is required to generate a ChangeLog >&2; \
    fi

-include $(top_srcdir)/git.mk