1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 100 2006-06-19 09:53:16Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005, 2006 Jari Häkkinen |
---|
6 | # |
---|
7 | # This file is part of svnstat, http://lev.thep.lu.se/trac/svnstat |
---|
8 | # |
---|
9 | # svnstat 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 | # svnstat 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 | bin_PROGRAMS = svnstat |
---|
25 | |
---|
26 | svnstat_SOURCES = Parameter.cc svnstat.cc |
---|
27 | |
---|
28 | noinst_HEADERS = Parameter.h |
---|
29 | |
---|
30 | LDADD = @top_srcdir@/lib/libsvnstat.a -L$(APR_PATH)/lib -L$(SVN_PATH)/lib \ |
---|
31 | -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_subr-1 -lapr-0 |
---|
32 | |
---|
33 | INCLUDES = -I@top_srcdir@/lib \ |
---|
34 | -I$(SVN_PATH)/include/subversion-1 -I$(APR_PATH)/include/apr-0 |
---|
35 | |
---|
36 | # Needed to compile svn API stuff |
---|
37 | svnstat_CXXFLAGS = -Wno-long-long |
---|
38 | |
---|
39 | clean-local: |
---|
40 | rm -rf svnstat_output *~ |
---|