bin/Makefile.am

Code
Comments
Other
Rev Date Author Line
21 30 Dec 05 jari 1 ## Process this file with automake to produce Makefile.in
21 30 Dec 05 jari 2 ##
21 30 Dec 05 jari 3 ## $Id$
37 13 Jan 06 peter 4
978 12 Dec 09 peter 5 # Copyright (C) 2005 Jari Häkkinen
1635 30 Mar 23 peter 6 # Copyright (C) 2006 Jari Häkkinen, Peter Johansson
1635 30 Mar 23 peter 7 # Copyright (C) 2007 Peter Johansson
1635 30 Mar 23 peter 8 # Copyright (C) 2008, 2009, 2010 Jari Häkkinen, Peter Johansson
1532 05 Oct 12 peter 9 # Copyright (C) 2012 Peter Johansson
84 13 Mar 06 jari 10 #
687 04 Aug 08 peter 11 # This file is part of svndigest, http://dev.thep.lu.se/svndigest
84 13 Mar 06 jari 12 #
148 11 Aug 06 jari 13 # svndigest is free software; you can redistribute it and/or modify it
84 13 Mar 06 jari 14 # under the terms of the GNU General Public License as published by
693 11 Sep 08 jari 15 # the Free Software Foundation; either version 3 of the License, or
84 13 Mar 06 jari 16 # (at your option) any later version.
84 13 Mar 06 jari 17 #
148 11 Aug 06 jari 18 # svndigest is distributed in the hope that it will be useful, but
84 13 Mar 06 jari 19 # WITHOUT ANY WARRANTY; without even the implied warranty of
148 11 Aug 06 jari 20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
84 13 Mar 06 jari 21 # General Public License for more details.
84 13 Mar 06 jari 22 #
84 13 Mar 06 jari 23 # You should have received a copy of the GNU General Public License
693 11 Sep 08 jari 24 # along with svndigest. If not, see <http://www.gnu.org/licenses/>.
84 13 Mar 06 jari 25
1525 01 Oct 12 peter 26 bin_PROGRAMS = bin/svndigest bin/svndigest-copy-cache bin/svncopyright
37 13 Jan 06 peter 27
1525 01 Oct 12 peter 28 bin_svndigest_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \
1525 01 Oct 12 peter 29   bin/svndigestParameter.cc bin/svndigest.cc
1525 01 Oct 12 peter 30 bin_svndigest_copy_cache_SOURCES = bin/AbstractParameter.cc \
1525 01 Oct 12 peter 31   bin/svndigest_copy_cacheParameter.cc bin/svndigest-copy-cache.cc
1525 01 Oct 12 peter 32 bin_svncopyright_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \
1525 01 Oct 12 peter 33   bin/svncopyrightParameter.cc bin/svncopyright.cc
37 13 Jan 06 peter 34
1525 01 Oct 12 peter 35 noinst_HEADERS += bin/AbstractParameter.h
1525 01 Oct 12 peter 36 noinst_HEADERS += bin/Parameter.h
1525 01 Oct 12 peter 37 noinst_HEADERS += bin/svncopyrightParameter.h
1525 01 Oct 12 peter 38 noinst_HEADERS += bin/svndigestParameter.h
1525 01 Oct 12 peter 39 noinst_HEADERS += bin/svndigest_copy_cacheParameter.h
81 11 Mar 06 jari 40
1525 01 Oct 12 peter 41
1525 01 Oct 12 peter 42 core_LDADD = $(top_builddir)/lib/libsvndigest_core.a \
1673 26 Aug 23 peter 43   $(SVN_LIBS) $(APR_LIBS) $(YAT_LIBS)
49 14 Jan 06 jari 44
49 14 Jan 06 jari 45
1525 01 Oct 12 peter 46 bin_svncopyright_LDADD = $(core_LDADD)
1060 02 Jun 10 peter 47
1525 01 Oct 12 peter 48 bin_svndigest_copy_cache_LDADD = $(core_LDADD)
1525 01 Oct 12 peter 49
1525 01 Oct 12 peter 50 bin_svndigest_LDADD = $(top_builddir)/lib/libsvndigest.a $(core_LDADD) \
1525 01 Oct 12 peter 51   $(PLPLOT_LIBS)
1525 01 Oct 12 peter 52