1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 219 2006-12-24 21:39:35Z jari $ |
---|
4 | |
---|
5 | # Copyright (C) 2005, 2006 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 | TESTS = gnuplot_pipe parser |
---|
25 | if WCTESTS |
---|
26 | TESTS += directory file |
---|
27 | endif |
---|
28 | |
---|
29 | check_PROGRAMS = $(TESTS) |
---|
30 | |
---|
31 | LDADD = $(STATICFLAG) @top_srcdir@/lib/libsvndigest.la |
---|
32 | |
---|
33 | AM_CPPFLAGS = -I@top_srcdir@/lib |
---|
34 | |
---|
35 | gnuplot_pipe_SOURCES = gnuplot_pipe.cc |
---|
36 | parser_SOURCES = parser.cc |
---|
37 | if WCTESTS |
---|
38 | directory_SOURCES = directory.cc |
---|
39 | file_SOURCES = file.cc |
---|
40 | endif |
---|
41 | |
---|
42 | clean-local: |
---|
43 | rm -rf *.png *.tmp *~ |
---|