Fix my email address
[geos.git] / Makefile.am
blob2dfc4453024452cccc3fad72593515fc50f8886a
2 # This file is part of project GEOS (http://trac.osgeo.org/geos/)
4 # NOTE: Make sure that 'src' appears first.
5 # 'capi' and 'doc' surely rely on availability of libgeos
6 # which is built under 'src' and it seems that automake
7 # is not able to detect required build order but blindly
8 # relies on the order items in SUBDIRS appear.
10 SUBDIRS =   \
11     include \
12     src     \
13     capi    \
14     doc     \
15     macros  \
16     swig    \
17     tests   \
18     tools
20 BUILT_SOURCES = geos_svn_revision.h
22 EXTRA_DIST = acsite.m4 makefile.vc nmake.opt autogen.bat CMakeLists.txt \
23   cmake/modules/CheckPrototypeExists.cmake \
24   cmake/modules/COPYING-CMAKE-SCRIPTS \
25   cmake/cmake_uninstall.cmake.in geos_svn_revision.h
27 ACLOCAL_AMFLAGS = -I macros
29 cl:
30         cd $(srcdir) && svn update && svn2cl --authors=authors.svn -i -o ChangeLog
32 apidoc doxygen:
33         cd doc && make $@
35 authors.git: authors.svn
36         cd $(srcdir) && sed -e 's/:/ = /' authors.svn > authors.git
38 svnrebase: authors.git
39         cd $(srcdir) && git svn rebase --authors-file authors.git
41 geos_svn_revision.h:
42         top_srcdir=$(srcdir) sh $(srcdir)/tools/svn_repo_revision.sh
44 VALGRIND = $(LIBTOOL) --mode=execute valgrind --leak-check=full --error-exitcode=1
46 valgrindcheck:
47         $(VALGRIND) tests/unit/geos_unit
49 .PHONY: geos_svn_revision.h