source: trunk/test/Makefile.am @ 1017

Last change on this file since 1017 was 1017, checked in by Peter Johansson, 13 years ago

updating copyright years

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1017 2010-01-09 14:41:34Z peter $
4
5# Copyright (C) 2005, 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2010 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 init.sh
24
25check_PROGRAMS = cache_partial_test color_test \
26  config_test copyright_test date_test \
27  htmlstream_test \
28  parser_test stats_test trac_test utility_test
29
30distributed_TESTS =
31distributed_TESTS += cmd_format_test.sh
32distributed_TESTS += config2_test.sh
33distributed_TESTS += copyright2_test.sh
34distributed_TESTS += repo_status_test.sh
35distributed_TESTS += repo_test.sh
36distributed_TESTS += svndigest_copy_cache_test.sh
37
38TESTS = $(check_PROGRAMS) $(distributed_TESTS)
39
40EXTRA_DIST = $(distributed_TESTS)
41
42# tests not yet passing are listed here
43XFAIL_TESTS =
44
45noinst_HEADERS = Suite.h
46
47check_LIBRARIES = libsvndigesttest.a
48
49
50LDADD = $(builddir)/libsvndigesttest.a \
51  $(top_builddir)/lib/libsvndigest.a \
52  $(top_builddir)/lib/yat/libyat.a \
53  $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS)
54AM_LDFLAGS = $(APR_LDFLAGS) $(SVN_LDFLAGS) $(PLPLOT_LDFLAGS)
55
56AM_CPPFLAGS = -I$(top_srcdir)/lib $(APR_CPPFLAGS) $(SVN_CPPFLAGS) \
57  $(DEFAULT_CPPFLAGS) $(PLPLOT_CPPFLAGS)
58AM_CXXFLAGS = $(DEFAULT_CXXFLAGS)
59
60libsvndigesttest_a_SOURCES = Suite.cc
61
62cache_partial_test_SOURCES = cache_partial_test.cc
63color_test_SOURCES = color_test.cc
64config_test_SOURCES = config_test.cc
65copyright_test_SOURCES = copyright_test.cc
66date_test_SOURCES = date_test.cc
67htmlstream_test_SOURCES = htmlstream_test.cc
68parser_test_SOURCES = parser_test.cc
69stats_test_SOURCES = stats_test.cc
70trac_test_SOURCES = trac_test.cc
71utility_test_SOURCES = utility_test.cc
72
73clean-local:
74  rm -rf generated_output toy_project
75
76mostlyclean-local:
77  rm -f *.png *.tmp *~ .toy_project2
Note: See TracBrowser for help on using the repository browser.