source: trunk/bin/Makefile.am @ 909

Last change on this file since 909 was 907, checked in by Peter Johansson, 14 years ago

Autoconf 2.63 is now required (closes #414).

refs #380. A first implementation of svndigest-copy-cache. It is is
written in M4sh. Autoconf compiles the source in
svndigest-copy-cache.as to svndigest-copy-cache.in, which in turn is
processed by config.status to replace some keywords such as PACKAGE
and friends. There is no docs and no test yet.

added *.as in config file

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 907 2009-11-29 15:33:19Z peter $
4
5# Copyright (C) 2005 Jari Häkkinen
6# Copyright (C) 2006, 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
24bin_PROGRAMS = svndigest
25
26svndigest_SOURCES = Parameter.cc svndigest.cc
27
28noinst_HEADERS = Parameter.h
29
30bin_SCRIPTS = svndigest-copy-cache
31EXTRA_DIST = svndigest-copy-cache.as
32
33LDADD = $(top_builddir)/lib/libsvndigest.a \
34  $(top_builddir)/lib/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS)
35AM_LDFLAGS = $(APR_LDFLAGS) $(SVN_LDFLAGS) $(PLPLOT_LDFLAGS)
36
37AM_CPPFLAGS  = -I$(top_srcdir)/lib $(DEFAULT_CPPFLAGS) \
38  $(APR_CPPFLAGS) $(SVN_CPPFLAGS) $(PLPLOT_CPPFLAGS)
39AM_CXXFLAGS = $(DEFAULT_CXXFLAGS)
40
41.as.in:
42  $(AUTOM4TE) -l M4sh -o $@ -m 0444 $<
43
44MAINTAINERCLEANFILES = svndigest-copy-cache.in
45
46clean-local:
47  rm -rf *~
Note: See TracBrowser for help on using the repository browser.