#
# Makefile.am
#
# Copyright (C) 2009, Francesco P. Lovergine <frankie@debian.org>

AUTOMAKE_OPTIONS = foreign

ACLOCAL_AMFLAGS = -I m4

SUBDIRS = src man tools doc js include matlab python cmake examples

EXTRA_DIST = AUTHORS 00README.txt LICENSE.txt NEWS INSTALL README.md \
	Makefile.mk CMakeLists.txt windows maxima doc legacy java js dotnet \
	wrapper

dist-hook:
	rm -rf $(distdir)/doc/html $(distdir)/doc/manpages \
		$(distdir)/doc/GeographicLib.dox
	find $(distdir)/maxima -type f -name '*.lsp' | xargs rm -rf
	rm -rf $(distdir)/java/targets
	find $(distdir)/java -type f -name '*.class' | xargs rm -rf
	find $(distdir)/wrapper -mindepth 2 -type d | xargs rm -rf
	find $(distdir)/wrapper -type f -name '*.o' -o -name '*.mex*' | \
		xargs rm -f
	find $(distdir)/windows -mindepth 1 -type d | xargs rm -rf
	find $(distdir)/windows -type f \
		! \( -name '*.sln' -o -name '*.vc*proj' -o -name '*.mk' \)| \
		xargs rm -f
	find $(distdir) \
		\( -name .svn -o -name '.git*' -o -name CVS -o -name Makefile -o -name '*~' -o -name '*#*' -o -name 'CMakeFiles' -o -name '*.log' -o -name '*.tmp' -o -name '*.pyc' -o -name '*.bak' -o -name '*.BAK' -o -name geographiclib.js \) | \
		xargs rm -rf
	echo include Makefile.mk > $(distdir)/Makefile
	sed -e "s/Unconfigured/$(PACKAGE_VERSION)/" \
		-e "s/MAJOR .*/MAJOR ${GEOGRAPHICLIB_VERSION_MAJOR}/" \
		-e "s/MINOR .*/MINOR ${GEOGRAPHICLIB_VERSION_MINOR}/" \
		-e "s/PATCH .*/PATCH ${GEOGRAPHICLIB_VERSION_PATCH}/" \
		$(top_srcdir)/include/GeographicLib/Config.h > \
		$(distdir)/include/GeographicLib/Config.h

# Custom rules

all-local: man doc
install-data-local: install-doc

doc: man
	$(MAKE) -C doc doc

install-doc:
	$(MAKE) -C doc install-doc

man:
	$(MAKE) -C man man

.PHONY: doc install-doc man install-matlab install-python
