1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 847 2009-11-17 01:38:52Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005, 2006 Jari Häkkinen |
---|
6 | # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
7 | # Copyright (C) 2009 Peter Johansson |
---|
8 | # |
---|
9 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
10 | # |
---|
11 | # svndigest is free software; you can redistribute it and/or modify it |
---|
12 | # under the terms of the GNU General Public License as published by |
---|
13 | # the Free Software Foundation; either version 3 of the License, or |
---|
14 | # (at your option) any later version. |
---|
15 | # |
---|
16 | # svndigest is distributed in the hope that it will be useful, but |
---|
17 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | # General Public License for more details. |
---|
20 | # |
---|
21 | # You should have received a copy of the GNU General Public License |
---|
22 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | |
---|
24 | # -I arg should be the same as arg in AC_CONFIG_MACRO_DIR in configure.ac |
---|
25 | ACLOCAL_AMFLAGS = -I m4 |
---|
26 | |
---|
27 | SUBDIRS = lib bin man test |
---|
28 | |
---|
29 | EXTRA_dist = build_support/move-if-change |
---|
30 | |
---|
31 | clean-local: |
---|
32 | rm -rf svndigest *~ |
---|
33 | |
---|
34 | if ENABLE_SVN_SUPPORT |
---|
35 | include build_support/svn_support.am |
---|
36 | else |
---|
37 | release: |
---|
38 | @echo "ERROR: target 'release' not activated." |
---|
39 | @echo " You need to run configure with '--enable-svn-support'." |
---|
40 | @exit 1 |
---|
41 | endif |
---|
42 | |
---|
43 | |
---|
44 | # This is a workaround to avoid a broken make when .m4 files are |
---|
45 | # renamed or deleted. Something similar will be provided by Automake 1.11 |
---|
46 | $(am__aclocal_m4_deps): |
---|