1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 787 2009-04-13 21:08:51Z jari $ |
---|
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 = config_test copyright_test date_test \ |
---|
26 | parser_test stats_test trac_test utility_test |
---|
27 | |
---|
28 | TESTS = $(check_PROGRAMS) test_repo.sh check_repo_status.sh |
---|
29 | |
---|
30 | # tests not yet passing are listed here |
---|
31 | XFAIL_TESTS = |
---|
32 | |
---|
33 | noinst_HEADERS = Suite.h |
---|
34 | |
---|
35 | check_LIBRARIES = libsvndigesttest.a |
---|
36 | |
---|
37 | |
---|
38 | LDADD = $(builddir)/libsvndigesttest.a \ |
---|
39 | $(top_builddir)/lib/libsvndigest.a \ |
---|
40 | $(SVNDIGEST_LIBS) |
---|
41 | AM_LDFLAGS = $(SVNDIGEST_LDFLAGS) |
---|
42 | |
---|
43 | AM_CPPFLAGS = -I$(top_srcdir)/lib $(SVNDIGEST_CPPFLAGS) |
---|
44 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
45 | |
---|
46 | libsvndigesttest_a_SOURCES = Suite.cc |
---|
47 | |
---|
48 | config_test_SOURCES = config_test.cc |
---|
49 | copyright_test_SOURCES = copyright_test.cc |
---|
50 | date_test_SOURCES = date_test.cc |
---|
51 | parser_test_SOURCES = parser_test.cc |
---|
52 | stats_test_SOURCES = stats_test.cc |
---|
53 | trac_test_SOURCES = trac_test.cc |
---|
54 | utility_test_SOURCES = utility_test.cc |
---|
55 | |
---|
56 | clean-local: |
---|
57 | rm -rf generated_output toy_project |
---|
58 | |
---|
59 | mostlyclean-local: |
---|
60 | rm -f *.png *.tmp *~ |
---|