1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 303 2007-05-11 20:13:00Z 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 | # |
---|
9 | # This file is part of svndigest, http://lev.thep.lu.se/trac/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 2 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 this program; if not, write to the Free Software |
---|
23 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
24 | # 02111-1307, USA. |
---|
25 | |
---|
26 | noinst_LTLIBRARIES = libsvndigest.la |
---|
27 | |
---|
28 | noinst_HEADERS = Alias.h ColumnStream.h Commitment.h Configuration.h css.h\ |
---|
29 | Date.h Directory.h File.h first_page.h Gnuplot.h GnuplotFE.h \ |
---|
30 | HtmlStream.h html_utility.h Node.h Parser.h rmdirhier.h \ |
---|
31 | Stats.h SVN.h SVNblame.h \ |
---|
32 | SVNinfo.h SVNlog.h SVNproperty.h Trac.h utility.h |
---|
33 | |
---|
34 | libsvndigest_la_SOURCES = Alias.cc ColumnStream.cc \ |
---|
35 | Commitment.cc Configuration.cc \ |
---|
36 | css.cc Date.cc Directory.cc File.cc first_page.cc\ |
---|
37 | Gnuplot.cc GnuplotFE.cc HtmlStream.cc \ |
---|
38 | html_utility.cc Node.cc Parser.cc rmdirhier.cc Stats.cc SVN.cc \ |
---|
39 | SVNblame.cc SVNinfo.cc SVNlog.cc SVNproperty.cc Trac.cc utility.cc |
---|
40 | |
---|
41 | clean-local: |
---|
42 | rm -rf *~ |
---|