-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.am
52 lines (41 loc) · 1.66 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Makefile.am
#
# Copyright (C) 2009, Francesco P. Lovergine <[email protected]>
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src man tools doc include matlab python cmake examples
EXTRA_DIST = AUTHORS 00README.txt LICENSE.txt NEWS INSTALL README.md pom.xml \
Makefile.mk CMakeLists.txt windows maxima doc legacy java dotnet
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)/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 # install-matlab
doc: man
$(MAKE) -C doc doc
install-doc:
$(MAKE) -C doc install-doc
man:
$(MAKE) -C man man
# install-matlab:
# $(MAKE) -C matlab install-matlab
.PHONY: doc install-doc man install-matlab install-python