source: trunk/test/Makefile.am @ 138

Last change on this file since 138 was 105, checked in by Peter Johansson, 17 years ago

added test for new Parser class

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 105 2006-06-27 09:51:44Z peter $
4
5# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
6#
7# This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat
8#
9# svnstat is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# svnstat is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22# 02111-1307, USA.
23
24TESTS = commit_stat directory file gnuplot_pipe stats parser
25
26check_PROGRAMS = $(TESTS)
27
28LDADD = @top_srcdir@/lib/libsvnstat.a -L$(APR_PATH)/lib \
29  -lsvn_client-1 -lsvn_ra-1 -lsvn_subr-1 -lsvn_wc-1 -lapr-0
30
31INCLUDES = -I@top_srcdir@/lib
32
33commit_stat_SOURCES = commit_stat.cc
34directory_SOURCES = directory.cc
35file_SOURCES = file.cc
36gnuplot_pipe_SOURCES = gnuplot_pipe.cc
37parser_SOURCES = parser.cc
38stats_SOURCES = stats.cc
39
40clean-local:
41  rm -rf *.png *~
Note: See TracBrowser for help on using the repository browser.