1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1358 2011-05-31 23:38:22Z 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 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 | AM_CPPFLAGS = -I$(top_srcdir) $(SVNDIGEST_CPPFLAGS) |
---|
25 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
26 | |
---|
27 | noinst_LIBRARIES = libsvndigest.a libsvndigest_core.a |
---|
28 | |
---|
29 | noinst_HEADERS = AddStats.h Alias.h BlameStats.h CacheCopyer.h ClassicStats.h \ |
---|
30 | Colors.h Commitment.h Configuration.h \ |
---|
31 | CopyrightStats.h CopyrightVisitor.h css.h \ |
---|
32 | Date.h Directory.h DirectoryPrinter.h File.h FilePrinter.h \ |
---|
33 | first_page.h Functor.h \ |
---|
34 | Graph.h \ |
---|
35 | HtmlBuf.h HtmlStream.h html_utility.h LineTypeParser.h \ |
---|
36 | main_utility.h Node.h NodeCounter.h NodePrinter.h NodeVisitor.h \ |
---|
37 | OptionVersion.h rmdirhier.h \ |
---|
38 | Stats.h StatsCollection.h StatsPlotter.h subversion_revision.h \ |
---|
39 | SvndigestVisitor.h SVN.h SVNblame.h \ |
---|
40 | SVNdiff.h SVNinfo.h SVNlog.h SVNproperty.h TinyStats.h \ |
---|
41 | Trac.h utility.h Vector.h |
---|
42 | |
---|
43 | libsvndigest_a_SOURCES = |
---|
44 | libsvndigest_a_SOURCES += DirectoryPrinter.cc |
---|
45 | libsvndigest_a_SOURCES += FilePrinter.cc |
---|
46 | libsvndigest_a_SOURCES += first_page.cc |
---|
47 | libsvndigest_a_SOURCES += Graph.cc |
---|
48 | libsvndigest_a_SOURCES += NodePrinter.cc |
---|
49 | libsvndigest_a_SOURCES += StatsPlotter.cc |
---|
50 | libsvndigest_a_SOURCES += SvndigestVisitor.cc |
---|
51 | |
---|
52 | libsvndigest_core_a_SOURCES = AddStats.cc Alias.cc BlameStats.cc \ |
---|
53 | CacheCopyer.cc ClassicStats.cc Colors.cc \ |
---|
54 | Commitment.cc Configuration.cc CopyrightStats.cc CopyrightVisitor.cc \ |
---|
55 | css.cc Date.cc Directory.cc File.cc \ |
---|
56 | Functor.cc HtmlBuf.cc HtmlStream.cc \ |
---|
57 | html_utility.cc LineTypeParser.cc main_utility.cc Node.cc \ |
---|
58 | NodeCounter.cc OptionVersion.cc \ |
---|
59 | rmdirhier.cc Stats.cc StatsCollection.cc subversion_revision.cc SVN.cc \ |
---|
60 | SVNblame.cc SVNdiff.cc SVNinfo.cc \ |
---|
61 | SVNlog.cc SVNproperty.cc TinyStats.cc \ |
---|
62 | Trac.cc utility.cc Vector.cc |
---|
63 | |
---|
64 | clean-local: |
---|
65 | rm -rf *~ |
---|
66 | |
---|
67 | all-local: |
---|
68 | |
---|
69 | |
---|