1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1549 2012-10-24 22:40:01Z 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, 2011, 2012 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 | |
---|
24 | noinst_LIBRARIES += lib/libsvndigest.a lib/libsvndigest_core.a |
---|
25 | |
---|
26 | noinst_HEADERS += lib/AddStats.h lib/Alias.h lib/BlameStats.h \ |
---|
27 | lib/CacheCopyer.h \ |
---|
28 | lib/CacheRemover.h lib/ClassicStats.h \ |
---|
29 | lib/Colors.h lib/Commitment.h lib/Configuration.h \ |
---|
30 | lib/CopyrightStats.h lib/CopyrightVisitor.h lib/css.h \ |
---|
31 | lib/Date.h lib/Directory.h lib/DirectoryPrinter.h lib/DirectoryUtil.h \ |
---|
32 | lib/File.h lib/FilePrinter.h \ |
---|
33 | lib/first_page.h lib/Functor.h \ |
---|
34 | lib/Graph.h \ |
---|
35 | lib/HtmlBuf.h lib/HtmlStream.h lib/html_utility.h \ |
---|
36 | lib/LineTypeParser.h \ |
---|
37 | lib/main_utility.h lib/Node.h lib/NodeCounter.h lib/NodePrinter.h \ |
---|
38 | lib/NodeVisitor.h \ |
---|
39 | lib/OptionVersion.h lib/rmdirhier.h \ |
---|
40 | lib/SkipWhiteSpaceIterator.h \ |
---|
41 | lib/Stats.h lib/StatsCollection.h lib/StatsPlotter.h \ |
---|
42 | lib/subversion_revision.h \ |
---|
43 | lib/SvndigestVisitor.h lib/SVN.h lib/SVNblame.h \ |
---|
44 | lib/SVNcat.h lib/SVNinfo.h lib/SVNlog.h lib/SVNproperty.h \ |
---|
45 | lib/TinyStats.h \ |
---|
46 | lib/Trac.h lib/utility.h lib/Vector.h |
---|
47 | |
---|
48 | lib_libsvndigest_a_SOURCES = |
---|
49 | lib_libsvndigest_a_SOURCES += lib/DirectoryPrinter.cc |
---|
50 | lib_libsvndigest_a_SOURCES += lib/FilePrinter.cc |
---|
51 | lib_libsvndigest_a_SOURCES += lib/first_page.cc |
---|
52 | lib_libsvndigest_a_SOURCES += lib/Graph.cc |
---|
53 | lib_libsvndigest_a_SOURCES += lib/NodePrinter.cc |
---|
54 | lib_libsvndigest_a_SOURCES += lib/StatsPlotter.cc |
---|
55 | lib_libsvndigest_a_SOURCES += lib/SvndigestVisitor.cc |
---|
56 | |
---|
57 | lib_libsvndigest_core_a_SOURCES = lib/AddStats.cc lib/Alias.cc \ |
---|
58 | lib/BlameStats.cc \ |
---|
59 | lib/CacheCopyer.cc lib/CacheRemover.cc lib/ClassicStats.cc \ |
---|
60 | lib/Colors.cc \ |
---|
61 | lib/Commitment.cc lib/Configuration.cc \ |
---|
62 | lib/CopyrightStats.cc lib/CopyrightVisitor.cc \ |
---|
63 | lib/css.cc lib/Date.cc lib/Directory.cc \ |
---|
64 | lib/DirectoryUtil.cc lib/File.cc \ |
---|
65 | lib/Functor.cc lib/HtmlBuf.cc lib/HtmlStream.cc \ |
---|
66 | lib/html_utility.cc lib/LineTypeParser.cc \ |
---|
67 | lib/main_utility.cc lib/Node.cc \ |
---|
68 | lib/NodeCounter.cc lib/OptionVersion.cc \ |
---|
69 | lib/rmdirhier.cc lib/SkipWhiteSpaceIterator.cc lib/Stats.cc \ |
---|
70 | lib/StatsCollection.cc lib/subversion_revision.cc lib/SVN.cc \ |
---|
71 | lib/SVNblame.cc lib/SVNcat.cc lib/SVNinfo.cc \ |
---|
72 | lib/SVNlog.cc lib/SVNproperty.cc lib/TinyStats.cc \ |
---|
73 | lib/Trac.cc lib/utility.cc lib/Vector.cc |
---|