source: branches/0.7-stable/test/Makefile.am @ 933

Last change on this file since 933 was 933, checked in by Peter Johansson, 14 years ago

fixes #415

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 933 2009-12-03 02:53:30Z peter $
4
5# Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2009 Peter Johansson
7#
8# This file is part of svndigest, http://dev.thep.lu.se/svndigest
9#
10# svndigest is free software; you can redistribute it and/or modify it
11# under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 3 of the License, or
13# (at your option) any later version.
14#
15# svndigest is distributed in the hope that it will be useful, but
16# WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18# General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with svndigest. If not, see <http://www.gnu.org/licenses/>.
22
23check_SCRIPTS = svn_update.sh
24
25check_PROGRAMS = cache_partial_test \
26  config_test copyright_test date_test gnuplot_pipe_test \
27  parser_test stats_test trac_test utility_test
28
29TESTS = $(check_PROGRAMS) test_repo.sh check_repo_status.sh
30TESTS+= copyright_test2.sh
31
32# tests not yet passing are listed here
33XFAIL_TESTS =
34
35noinst_HEADERS = Suite.h
36
37check_LIBRARIES = libsvndigesttest.a
38
39
40LDADD = $(builddir)/libsvndigesttest.a \
41  $(top_builddir)/lib/libsvndigest.a \
42  $(top_builddir)/lib/yat/libyat.a \
43  $(SVNDIGEST_LIBS)
44AM_LDFLAGS = $(SVNDIGEST_LDFLAGS)
45
46AM_CPPFLAGS = -I$(top_srcdir)/lib $(SVNDIGEST_CPPFLAGS)
47AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS)
48
49libsvndigesttest_a_SOURCES = Suite.cc
50
51cache_partial_test_SOURCES = cache_partial_test.cc
52config_test_SOURCES = config_test.cc
53copyright_test_SOURCES = copyright_test.cc
54date_test_SOURCES = date_test.cc
55gnuplot_pipe_test_SOURCES = gnuplot_pipe_test.cc
56parser_test_SOURCES = parser_test.cc
57stats_test_SOURCES = stats_test.cc
58trac_test_SOURCES = trac_test.cc
59utility_test_SOURCES = utility_test.cc
60
61clean-local:
62  rm -rf generated_output toy_project
63
64mostlyclean-local:
65  rm -f *.png *.tmp *~ .toy_project2
Note: See TracBrowser for help on using the repository browser.