summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: d2139e7d61a1aa4bd63319c5e0c347b5a2a35a18 (plain)
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
165
166
167
168
169
170
## This file is part of GNU Mailutils
## Copyright (C) 2000-2020 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.
##
## GNU Mailutils 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 GNU Mailutils.  If not, see <http://www.gnu.org/licenses/>.

ACLOCAL_AMFLAGS = -I m4 -I am -I gint -I doc/imprimatur

if MU_COND_LIBMU_SCM
  GINT_DIR = gint
  LIBMU_SCM_DIR = libmu_scm
  SCHEME_DIR = scheme
endif

if MU_COND_SUPPORT_CXX
  LIBMU_CPP_DIR = libmu_cpp
endif

if MU_COND_DBM
  LIBMU_DBM_DIR = libmu_dbm
endif

if MU_COND_PYTHON
  PYTHON_DIR = python
endif

SUBDIRS = . \
 mu-aux\
 include\
 po\
 testsuite\
 libmailutils\
 sql\
 libmu_auth\
 libproto\
 libtests\
 lib\
 $(LIBMU_CPP_DIR)\
 $(GINT_DIR)\
 $(LIBMU_SCM_DIR)\
 $(LIBMU_DBM_DIR)\
 libmu_sieve\
 $(PYTHON_DIR)\
 doc\
 examples\
 mu\
 $(SCHEME_DIR)

if MU_COND_FRM
  SUBDIRS += frm
endif

if MU_COND_POP3D
  SUBDIRS += pop3d
endif

if MU_COND_IMAP4D
  SUBDIRS += imap4d
endif

if MU_COND_MDA_TOOLS
  SUBDIRS += mda
endif

if MU_COND_MAIL
  SUBDIRS += mail
endif

if MU_COND_SIEVE
  SUBDIRS += sieve
endif

if MU_COND_MESSAGES
  SUBDIRS += messages
endif

if MU_COND_COMSAT
  SUBDIRS += comsat
endif

if MU_COND_READMSG
  SUBDIRS += readmsg
endif

if MU_COND_DOTLOCK
  SUBDIRS += dotlock
endif

if MU_COND_MH
  SUBDIRS += mh
endif

if MU_COND_MOVEMAIL
  SUBDIRS += movemail
endif

if MU_COND_DECODEMAIL
  SUBDIRS += decodemail
endif

if MU_COND_MIMEVIEW
  SUBDIRS += mimeview
endif

EXTRA_DIST = COPYING.LESSER paths
DISTCLEANFILES = pathdefs.h

gen_start_date = "2008-12-08"
prev_change_log = "doc/ChangeLog.CVS"
amend_file = ChangeLog.amend

# Trigger creation of the ChangeLog
noinst_DATA = ChangeLog
.PHONY: ChangeLog
ChangeLog: 
	$(AM_V_at)if test -d .git; then					\
	    $(top_srcdir)/mu-aux/gencl --verbose --append-dot           \
                    --email=$(PACKAGE_BUGREPORT)                        \
		    --append=$(prev_change_log)     		        \
                    --amend=$(amend_file)                               \
	            --since=$(gen_start_date);    			\
	elif test "$(builddir)" = "$(srcdir)" && test ! -e ChangeLog; then \
	    echo "This file is a placeholder." > ChangeLog;             \
	fi

dist-hook: ChangeLog
	@if test -f ChangeLog && test -f NEWS; then			\
	  PATCHLEV=`echo "$(PACKAGE_VERSION)" | sed -r "s/[0-9]+\.[0-9]+\.?//"`;\
	  if test $${PATCHLEV:-0} -lt 50; then				     \
	    if head -n 6 ChangeLog | grep -q 'Uncommitted changes' ;	     \
	    then							     \
	      echo >&2 "*** Source tree contains uncommitted changes";	     \
	      echo >&2 "*** Aborting";					     \
	      exit 1;							     \
	    fi;								     \
	    if grep -q FIXME NEWS; then					     \
	      echo >&2 "*** NEWS file contains FIXMEs";			     \
	      echo >&2 "*** Aborting";					     \
	      exit 1;							     \
	    fi;								     \
	  fi;                                                                \
	fi

alpha:
	version=`$(GITINFO) -H'$$refversion{?$$refdist>0??-$$refdist?}'`;\
	if test -n "$$version"; then\
	  $(MAKE) dist distdir=$(PACKAGE)-$$version; \
	else \
	  $(MAKE) dist; \
	fi


alphacheck:
	version=`$(GITINFO) -H'$$refversion{?$$refdist>0??-$$refdist?}'`;\
	if test -n "$$version"; then\
	  $(MAKE) distcheck distdir=$(PACKAGE)-$$version; \
	else \
	  $(MAKE) distcheck; \
	fi

Return to:

Send suggestions and report system problems to the System administrator.