source: trunk/bin/Makefile.am

Last change on this file was 1673, checked in by Peter Johansson, 5 weeks ago

closes #541. Require installed libyat

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1673 2023-08-26 15:36:10Z peter $
4
5# Copyright (C) 2005 Jari Häkkinen
6# Copyright (C) 2006 Jari Häkkinen, Peter Johansson
7# Copyright (C) 2007 Peter Johansson
8# Copyright (C) 2008, 2009, 2010 Jari Häkkinen, Peter Johansson
9# Copyright (C) 2012 Peter Johansson
10#
11# This file is part of svndigest, http://dev.thep.lu.se/svndigest
12#
13# svndigest is free software; you can redistribute it and/or modify it
14# under the terms of the GNU General Public License as published by
15# the Free Software Foundation; either version 3 of the License, or
16# (at your option) any later version.
17#
18# svndigest is distributed in the hope that it will be useful, but
19# WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with svndigest. If not, see <http://www.gnu.org/licenses/>.
25
26bin_PROGRAMS = bin/svndigest bin/svndigest-copy-cache bin/svncopyright
27
28bin_svndigest_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \
29  bin/svndigestParameter.cc bin/svndigest.cc
30bin_svndigest_copy_cache_SOURCES = bin/AbstractParameter.cc \
31  bin/svndigest_copy_cacheParameter.cc bin/svndigest-copy-cache.cc
32bin_svncopyright_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \
33  bin/svncopyrightParameter.cc bin/svncopyright.cc
34
35noinst_HEADERS += bin/AbstractParameter.h
36noinst_HEADERS += bin/Parameter.h
37noinst_HEADERS += bin/svncopyrightParameter.h
38noinst_HEADERS += bin/svndigestParameter.h
39noinst_HEADERS += bin/svndigest_copy_cacheParameter.h
40
41
42core_LDADD = $(top_builddir)/lib/libsvndigest_core.a \
43  $(SVN_LIBS) $(APR_LIBS) $(YAT_LIBS)
44
45
46bin_svncopyright_LDADD = $(core_LDADD)
47
48bin_svndigest_copy_cache_LDADD = $(core_LDADD)
49
50bin_svndigest_LDADD = $(top_builddir)/lib/libsvndigest.a $(core_LDADD) \
51  $(PLPLOT_LIBS)
52
Note: See TracBrowser for help on using the repository browser.