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 | |
---|
26 | bin_PROGRAMS = bin/svndigest bin/svndigest-copy-cache bin/svncopyright |
---|
27 | |
---|
28 | bin_svndigest_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \ |
---|
29 | bin/svndigestParameter.cc bin/svndigest.cc |
---|
30 | bin_svndigest_copy_cache_SOURCES = bin/AbstractParameter.cc \ |
---|
31 | bin/svndigest_copy_cacheParameter.cc bin/svndigest-copy-cache.cc |
---|
32 | bin_svncopyright_SOURCES = bin/AbstractParameter.cc bin/Parameter.cc \ |
---|
33 | bin/svncopyrightParameter.cc bin/svncopyright.cc |
---|
34 | |
---|
35 | noinst_HEADERS += bin/AbstractParameter.h |
---|
36 | noinst_HEADERS += bin/Parameter.h |
---|
37 | noinst_HEADERS += bin/svncopyrightParameter.h |
---|
38 | noinst_HEADERS += bin/svndigestParameter.h |
---|
39 | noinst_HEADERS += bin/svndigest_copy_cacheParameter.h |
---|
40 | |
---|
41 | |
---|
42 | core_LDADD = $(top_builddir)/lib/libsvndigest_core.a \ |
---|
43 | $(SVN_LIBS) $(APR_LIBS) $(YAT_LIBS) |
---|
44 | |
---|
45 | |
---|
46 | bin_svncopyright_LDADD = $(core_LDADD) |
---|
47 | |
---|
48 | bin_svndigest_copy_cache_LDADD = $(core_LDADD) |
---|
49 | |
---|
50 | bin_svndigest_LDADD = $(top_builddir)/lib/libsvndigest.a $(core_LDADD) \ |
---|
51 | $(PLPLOT_LIBS) |
---|
52 | |
---|