source: trunk/Makefile.am @ 1627

Last change on this file since 1627 was 1607, checked in by Peter, 15 years ago

fixed typo in comment

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
RevLine 
[2]1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1607 2008-10-31 14:14:58Z peter $
4
[831]5# Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen
[572]6# Copyright (C) 2005 Peter Johansson
[831]7# Copyright (C) 2006 Jari Häkkinen
[1275]8# Copyright (C) 2007 Jari Häkkinen, Peter Johansson
9# Copyright (C) 2008 Peter Johansson
[572]10#
[1437]11# This file is part of the yat library, http://dev.thep.lu.se/yat
[572]12#
[675]13# The yat library is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License as
[1486]15# published by the Free Software Foundation; either version 3 of the
[572]16# License, or (at your option) any later version.
17#
[675]18# The yat library is distributed in the hope that it will be useful,
[572]19# but WITHOUT ANY WARRANTY; without even the implied warranty of
[675]20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[572]21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
[1487]24# along with yat. If not, see <http://www.gnu.org/licenses/>.
[572]25
[1439]26# -I arg should be the same as arg in AC_CONFIG_MACRO_DIR in configure.ac
[1388]27ACLOCAL_AMFLAGS = -I build_support --install
28
[1504]29SUBDIRS = build_support yat test doc
[573]30
31.PHONY: doc
[1354]32doc:; @(cd doc; $(MAKE) $(AM_MAKEFLAGS) $@)
[573]33
[1558]34.PHONY: svn-clean
35if ENABLE_SVN_SUPPORT
36svn-clean: maintainer-clean
37  $(PERL) $(top_srcdir)/build_support/svn-clean $(srcdir)
38else
39svn-clean:
40  @echo "$@ is not enabled - see configure option --enable-svn-support"
[1596]41endif
42
43
44# This is a workaround to avoid a broken make when .m4 files are
[1607]45# renamed or deleted. Something similar will be provided by Automake 1.11
[1596]46$(am__aclocal_m4_deps):
Note: See TracBrowser for help on using the repository browser.