21 |
30 Dec 05 |
jari |
## Process this file with automake to produce Makefile.in |
21 |
30 Dec 05 |
jari |
2 |
## |
21 |
30 Dec 05 |
jari |
## $Id$ |
37 |
13 Jan 06 |
peter |
4 |
|
978 |
12 Dec 09 |
peter |
# Copyright (C) 2005 Jari Häkkinen |
1635 |
30 Mar 23 |
peter |
# Copyright (C) 2006 Jari Häkkinen, Peter Johansson |
1635 |
30 Mar 23 |
peter |
# Copyright (C) 2007 Peter Johansson |
1635 |
30 Mar 23 |
peter |
# Copyright (C) 2008, 2009, 2010 Jari Häkkinen, Peter Johansson |
1532 |
05 Oct 12 |
peter |
# Copyright (C) 2012 Peter Johansson |
84 |
13 Mar 06 |
jari |
10 |
# |
687 |
04 Aug 08 |
peter |
# This file is part of svndigest, http://dev.thep.lu.se/svndigest |
84 |
13 Mar 06 |
jari |
12 |
# |
148 |
11 Aug 06 |
jari |
# svndigest is free software; you can redistribute it and/or modify it |
84 |
13 Mar 06 |
jari |
# under the terms of the GNU General Public License as published by |
693 |
11 Sep 08 |
jari |
# the Free Software Foundation; either version 3 of the License, or |
84 |
13 Mar 06 |
jari |
# (at your option) any later version. |
84 |
13 Mar 06 |
jari |
17 |
# |
148 |
11 Aug 06 |
jari |
# svndigest is distributed in the hope that it will be useful, but |
84 |
13 Mar 06 |
jari |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
148 |
11 Aug 06 |
jari |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
84 |
13 Mar 06 |
jari |
# General Public License for more details. |
84 |
13 Mar 06 |
jari |
22 |
# |
84 |
13 Mar 06 |
jari |
# You should have received a copy of the GNU General Public License |
693 |
11 Sep 08 |
jari |
# 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 \ |
1290 |
12 Nov 10 |
peter |
43 |
$(top_builddir)/yat/libyat.a $(SVN_LIBS) $(APR_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 |
|