source: trunk/bin/Makefile.am @ 1060

Last change on this file since 1060 was 1060, checked in by Peter Johansson, 13 years ago

refs #307

Splittin the Parameter class into two separate classes and a base
class holding the common parts. The output of '--help' is not sorted
as before otherwise everything should be the same. The sort will
require some ammendment in yat.

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