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 | |
---|
24 | check_PROGRAMS = date gnuplot_pipe parser trac utility_test |
---|
25 | |
---|
26 | TESTS = $(check_PROGRAMS) |
---|
27 | # these tests are only for developers since we do not distribute test repository |
---|
28 | if WCTESTS |
---|
29 | TESTS += test_repo.sh check_repo_status.sh |
---|
30 | endif |
---|
31 | |
---|
32 | LDADD = $(STATICFLAG) @top_builddir@/lib/libsvndigest.la |
---|
33 | |
---|
34 | AM_CPPFLAGS = -I@top_srcdir@/lib |
---|
35 | |
---|
36 | date_SOURCES = date.cc |
---|
37 | gnuplot_pipe_SOURCES = gnuplot_pipe.cc |
---|
38 | parser_SOURCES = parser.cc |
---|
39 | trac_SOURCES = trac.cc |
---|
40 | utility_test_SOURCES = utility_test.cc |
---|
41 | |
---|
42 | check_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 | |
---|
48 | test_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 | |
---|
57 | clean-local: |
---|
58 | rm -rf *.png *.tmp *~ check_repo_status.sh test_repo.sh \ |
---|
59 | $(srcdir)/generated_output |
---|
60 | |
---|