Makefile.am
3.86 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009
## Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 3, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301 USA
ACLOCAL_AMFLAGS = -I m4 -I am
if MU_COND_PYTHON
PYTHON_DIR = python
endif
if MU_COND_MH
MH_DIR = mh
endif
if MU_COND_FRM
FRM_DIR = frm
endif
if MU_COND_POP3D
POP3D_DIR = pop3d
endif
if MU_COND_IMAP4D
IMAP4D_DIR = imap4d
endif
if MU_COND_MAIDAG
MAIDAG_DIR = maidag
endif
if MU_COND_MAIL
MAIL_DIR = mail
endif
if MU_COND_SIEVE
SIEVE_DIR = sieve
endif
if MU_COND_GUIMB
GUIMB_DIR = guimb
endif
if MU_COND_MESSAGES
MESSAGES_DIR = messages
endif
if MU_COND_COMSAT
COMSAT_DIR = comsat
endif
if MU_COND_READMSG
READMSG_DIR = readmsg
endif
if MU_COND_DOTLOCK
DOTLOCK_DIR = dotlock
endif
if MU_COND_MOVEMAIL
MOVEMAIL_DIR = movemail
endif
if MU_COND_MIMEVIEW
MIMEVIEW_DIR = mimeview
endif
if MU_COND_LIBMU_SCM
LIBMU_SCM_DIR = libmu_scm
endif
if MU_COND_LIBMU_CPP
LIBMU_CPP_DIR = libmu_cpp
endif
SUBDIRS = \
mu-aux\
include\
po\
testsuite\
mailbox\
sql\
libmu_auth\
libproto\
lib\
libmu_argp\
libmu_cfg\
$(LIBMU_CPP_DIR)\
$(LIBMU_SCM_DIR)\
libmu_sieve\
$(PYTHON_DIR)\
doc\
config\
examples\
$(FRM_DIR)\
$(POP3D_DIR)\
$(IMAP4D_DIR)\
$(MAIDAG_DIR)\
$(MAIL_DIR)\
$(SIEVE_DIR)\
$(GUIMB_DIR)\
$(MESSAGES_DIR)\
$(COMSAT_DIR)\
$(READMSG_DIR)\
$(DOTLOCK_DIR)\
$(MH_DIR)\
$(MOVEMAIL_DIR)\
$(MIMEVIEW_DIR)
EXTRA_DIST = COPYING.LESSER paths
DISTCLEANFILES = pathdefs.h
gen_start_date = "2008-12-08"
prev_change_log = "doc/ChangeLog.CVS"
.PHONY: ChangeLog
ChangeLog:
@if test -d .git; then \
cmd=$(top_srcdir)/build-aux/gitlog-to-changelog; \
if test -n "$(gen_start_date)"; then \
cmd="$$cmd --since=\"$(gen_start_date)\""; \
fi; \
$$cmd --format='%s%n%n%b%n' | \
sed '/<unknown>$$/d' | fmt -s > cl-t; \
if test -n "$(prev_change_log)" && test -f "$(prev_change_log)"; \
then \
echo "" >> cl-t; \
cat "$(prev_change_log)" | \
sed '/^Local Variables:/,/^End:/d' >> cl-t; \
fi; \
echo "Local Variables:" >> cl-t; \
echo "mode: change-log" >> cl-t; \
echo "version-control: never" >> cl-t; \
echo "buffer-read-only: t" >> cl-t; \
echo "End:" >> cl-t; \
rm -f ChangeLog; \
mv cl-t ChangeLog; \
fi
alpha:
$(MAKE) dist distdir=$(PACKAGE)-$(VERSION)-`date +"%Y%m%d"`
alphacheck:
$(MAKE) distcheck distdir=$(PACKAGE)-$(VERSION)-`date +"%Y%m%d"`
rpm: dist
rpm -ta --clean mailutils-$(VERSION).tar.gz