[84] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 149 2006-08-12 09:11:46Z jari $ |
---|
| 4 | |
---|
| 5 | # Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson |
---|
[6] | 6 | # |
---|
[149] | 7 | # This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
[84] | 8 | # |
---|
[149] | 9 | # svndigest is free software; you can redistribute it and/or modify it |
---|
[84] | 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 | # |
---|
[149] | 14 | # svndigest is distributed in the hope that it will be useful, but |
---|
[84] | 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. |
---|
[8] | 23 | |
---|
[145] | 24 | TESTS = directory file gnuplot_pipe |
---|
[8] | 25 | |
---|
| 26 | check_PROGRAMS = $(TESTS) |
---|
| 27 | |
---|
[149] | 28 | LDADD = @top_srcdir@/lib/libsvndigest.a -L$(APR_PATH)/lib \ |
---|
[144] | 29 | -lsvn_client-1 -lsvn_diff-1 -lsvn_ra-1 -lsvn_subr-1 -lsvn_wc-1 -lapr-0 |
---|
[8] | 30 | |
---|
[144] | 31 | INCLUDES = -I@top_srcdir@/lib -I$(SVN_PATH)/include/subversion-1 \ |
---|
| 32 | -I$(APR_PATH)/include/apr-0 |
---|
[9] | 33 | |
---|
[24] | 34 | directory_SOURCES = directory.cc |
---|
| 35 | file_SOURCES = file.cc |
---|
[26] | 36 | gnuplot_pipe_SOURCES = gnuplot_pipe.cc |
---|
[28] | 37 | |
---|
| 38 | clean-local: |
---|
[56] | 39 | rm -rf *.png *~ |
---|