source: trunk/test/Makefile.am @ 422

Last change on this file since 422 was 422, checked in by Peter Johansson, 16 years ago

changed name of utility to utility_test to avoid problem that binary file being parsed by preprocessor

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 422 2007-06-29 18:16:48Z peter $
4
5# Copyright (C) 2005, 2006, 2007 Jari Häkkinen, Peter Johansson
6#
7# This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
8#
9# svndigest 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# svndigest 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
24check_PROGRAMS = date gnuplot_pipe parser trac utility_test
25
26TESTS = $(check_PROGRAMS)
27# these tests are only for developers since we do not distribute test repository
28if WCTESTS
29TESTS += test_repo.sh check_repo_status.sh
30endif
31
32LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la
33
34AM_CPPFLAGS = -I@top_srcdir@/lib
35
36date_SOURCES = date.cc
37gnuplot_pipe_SOURCES = gnuplot_pipe.cc
38parser_SOURCES = parser.cc
39trac_SOURCES = trac.cc
40utility_test_SOURCES = utility_test.cc
41
42check_repo_status.sh: check_repo_status.sh.in Makefile.am
43  @echo \#!$(SHELL) > $@;
44  @cat check_repo_status.sh.in >> $@;
45  @chmod 744 $@;
46  @echo create $@; 
47
48test_repo.sh: test_repo.sh.in Makefile.am
49  @echo \#!$(SHELL) > $@;
50  @echo srcdir=$(srcdir) >> $@;
51  @echo top_builddir=$(top_builddir) >> $@;
52  @echo targetdir=$(srcdir)/generated_output >> $@;
53  @cat test_repo.sh.in >> $@;
54  @chmod 744 $@;
55  @echo create $@; 
56
57clean-local:
58  rm -rf *.png *.tmp *~ check_repo_status.sh test_repo.sh \
59  $(srcdir)/generated_output 
60
Note: See TracBrowser for help on using the repository browser.