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