source: trunk/Makefile.am @ 2105

Last change on this file since 2105 was 2105, checked in by Peter, 14 years ago

new convenience target that is similar to 'make install' but does not update header files that haven't changed. Can be useful to avoid extra compilation. Note, will not work if you bootstrapped with automake 1.10, but you need a newer install-sh. The distributed tarball should have been bootstrapped with automake 1.11+, so then you should have no problem.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3
4# $Id: Makefile.am 2105 2009-11-06 16:57:29Z 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
28ACLOCAL_AMFLAGS = -I m4
29
30SUBDIRS = build_support m4 yat test doc
31
32.PHONY: doc doxygen_mk maintainer-check news-check svn-check svn-clean release
33doc: doxygen_mk
34  @(cd doc; $(MAKE) $(AM_MAKEFLAGS) $@)
35
36doxygen_mk:; @(cd yat; $(MAKE) $(AM_MAKEFLAGS) $@)
37
38#
39install-modified:
40  $(MAKE) install $(AM_MAKEFLAGS) INSTALL_HEADER="$(install_sh_DATA) -C"
41
42if ENABLE_SVN_SUPPORT
43include build_support/svn_support.am
44else
45release:
46  @echo "ERROR: target 'release' not activated."
47  @echo "       You need to run configure with '--enable-svn-support'."
48  @exit 1
49endif
50
51# This is a workaround to avoid a broken make when .m4 files are
52# renamed or deleted. Something similar will be provided by Automake 1.11
53$(am__aclocal_m4_deps):
Note: See TracBrowser for help on using the repository browser.