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 | |
---|
23 | check_SCRIPTS = svn_update.sh |
---|
24 | |
---|
25 | check_PROGRAMS = cache_partial_test \ |
---|
26 | config_test copyright_test date_test gnuplot_pipe_test \ |
---|
27 | parser_test stats_test trac_test utility_test |
---|
28 | |
---|
29 | TESTS = $(check_PROGRAMS) test_repo.sh check_repo_status.sh |
---|
30 | TESTS+= copyright_test2.sh |
---|
31 | |
---|
32 | # tests not yet passing are listed here |
---|
33 | XFAIL_TESTS = |
---|
34 | |
---|
35 | noinst_HEADERS = Suite.h |
---|
36 | |
---|
37 | check_LIBRARIES = libsvndigesttest.a |
---|
38 | |
---|
39 | |
---|
40 | LDADD = $(builddir)/libsvndigesttest.a \ |
---|
41 | $(top_builddir)/lib/libsvndigest.a \ |
---|
42 | $(top_builddir)/lib/yat/libyat.a \ |
---|
43 | $(SVNDIGEST_LIBS) |
---|
44 | AM_LDFLAGS = $(SVNDIGEST_LDFLAGS) |
---|
45 | |
---|
46 | AM_CPPFLAGS = -I$(top_srcdir)/lib $(SVNDIGEST_CPPFLAGS) |
---|
47 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
48 | |
---|
49 | libsvndigesttest_a_SOURCES = Suite.cc |
---|
50 | |
---|
51 | cache_partial_test_SOURCES = cache_partial_test.cc |
---|
52 | config_test_SOURCES = config_test.cc |
---|
53 | copyright_test_SOURCES = copyright_test.cc |
---|
54 | date_test_SOURCES = date_test.cc |
---|
55 | gnuplot_pipe_test_SOURCES = gnuplot_pipe_test.cc |
---|
56 | parser_test_SOURCES = parser_test.cc |
---|
57 | stats_test_SOURCES = stats_test.cc |
---|
58 | trac_test_SOURCES = trac_test.cc |
---|
59 | utility_test_SOURCES = utility_test.cc |
---|
60 | |
---|
61 | clean-local: |
---|
62 | rm -rf generated_output toy_project |
---|
63 | |
---|
64 | mostlyclean-local: |
---|
65 | rm -f *.png *.tmp *~ .toy_project2 |
---|