source: tags/release-0.3/test/Makefile.am @ 1608

Last change on this file since 1608 was 145, checked in by Jari Häkkinen, 17 years ago

Removed test/parser.cc and test/stats.cc. These tests are an essential
part in the test/directory.cc and test/file.cc, and thus redundant.
Fixed the other tests to actually report success or failure.

  • 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 145 2006-08-09 21:36:31Z jari $
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 = directory file gnuplot_pipe
25
26check_PROGRAMS = $(TESTS)
27
28LDADD = @top_srcdir@/lib/libsvnstat.a -L$(APR_PATH)/lib \
29  -lsvn_client-1 -lsvn_diff-1 -lsvn_ra-1 -lsvn_subr-1 -lsvn_wc-1 -lapr-0
30
31INCLUDES = -I@top_srcdir@/lib -I$(SVN_PATH)/include/subversion-1 \
32  -I$(APR_PATH)/include/apr-0
33
34directory_SOURCES = directory.cc
35file_SOURCES = file.cc
36gnuplot_pipe_SOURCES = gnuplot_pipe.cc
37
38clean-local:
39  rm -rf *.png *~
Note: See TracBrowser for help on using the repository browser.