source: trunk/test/Makefile.am @ 540

Last change on this file since 540 was 540, checked in by Peter Johansson, 15 years ago

fixes automatic update of revision and copyright year in --version output. Options --version and --verbose can no be combined to get a slightly more detailed description.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 540 2007-12-29 02:40:23Z peter $
4
5# Copyright (C) 2005, 2006, 2007 Jari Häkkinen, Peter Johansson
6#
7# This file is part of svndigest, http://trac.thep.lu.se/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
42rootdir = $(abs_srcdir)/toy_project
43targetdir = $(abs_builddir)/generated_output
44repodir = $(abs_srcdir)/repo/trunk
45
46do_subst = $(SED) -e 's,%SHELL%,$(SHELL),g' \
47            -e 's,%SED%,$(SED),g' \
48            -e 's,%DISTFILES%,$(DISTFILES),g' \
49            -e 's,%GREP%,$(GREP),g' \
50            -e 's,%abs_srcdir%,$(abs_srcdir),g' \
51            -e 's,%repodir%,$(repodir),g' \
52            -e 's,%rootdir%,$(rootdir),g' \
53            -e 's,%targetdir%,$(targetdir),g' \
54            -e 's,%abs_top_builddir%,$(abs_top_builddir),g'
55
56
57check_repo_status.sh: check_repo_status.sh.in Makefile
58  @$(do_subst) < $< > $@
59  @chmod +x $@
60  @echo creating $@
61
62test_repo.sh: test_repo.sh.in Makefile
63  @$(do_subst) < $< > $@
64  @chmod +x $@
65  @echo creating $@
66
67clean-local:
68  rm -rf *.png *.tmp *~ check_repo_status.sh test_repo.sh \
69  $(targetdir) 
70
Note: See TracBrowser for help on using the repository browser.