-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmakefile-admin
54 lines (42 loc) · 2.64 KB
/
makefile-admin
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
53
54
# -*- Makefile -*-
# ssh -t karney,geographiclib@shell.sourceforge.net create
# git: /home/git/p/geographiclib/code.git
USER=karney
STAGE=$(HOME)/web
WEBSTAGE=$(STAGE)/geographiclib-web
DATASTAGE=$(STAGE)/geographiclib-files
geodesic-papers/biblio.html: geodesic-biblio.txt biblio.sh
sh biblio.sh $< > $@
JS_MODULES=Math Geodesic GeodesicLine PolygonArea DMS Interface
JS_SOURCES=$(patsubst %,doc/scripts/GeographicLib/%.js,$(JS_MODULES))
doc/scripts/geographiclib.js: $(JS_SOURCES)
sh js-compress.sh $^ > $@
pack-js: doc/scripts/geographiclib.js
distrib-html: geodesic-papers/biblio.html
rsync -av --exclude .svn --exclude '.git*' --exclude '*~' --exclude '.#*' --exclude '#*' --delete --delete-excluded index.html tm.html tm-addenda.html tm-grid.kmz geod.html geod-addenda.html bessel-errata.html jacobi-errata.html *-figs.pdf geodesic-papers $(WEBSTAGE)/htdocs/
rsync --delete -av -e ssh $(WEBSTAGE)/htdocs $(USER),geographiclib@web.sourceforge.net:./
distrib-doc:
rsync --delete -av -e ssh $(WEBSTAGE)/htdocs $(USER),geographiclib@web.sourceforge.net:./
distrib-files:
rsync -av --exclude .svn --exclude '.git*' --delete distrib testdata geoids-distrib gravity-distrib magnetic-distrib $(DATASTAGE)/
rsync --exclude '*~' --exclude '#*' --exclude '.#*' --exclude .svn --exclude '.git*' --delete --delete-excluded -av -e ssh $(DATASTAGE)/{distrib,testdata,{geoids,gravity,magnetic}-distrib} $(USER)@frs.sourceforge.net:/home/frs/project/geographiclib/
distrib-cgi:
for f in GeoConvert GeodSolve GeoidEval Planimeter RhumbSolve printlogs Geod; do \
a=cgi-bin/$$f.cgi; b=$(WEBSTAGE)/cgi-bin/$$f; \
cmp $$a $$b > /dev/null || install $$a $$b; done
for f in utils; do \
a=cgi-bin/$$f.sh; b=$(WEBSTAGE)/cgi-bin/$$f.sh; \
cmp $$a $$b > /dev/null || install -m 644 $$a $$b; done
rsync --exclude '*~' --exclude '#*' --exclude '.#*' --delete --delete-excluded -av -e ssh $(WEBSTAGE)/{cgi-bin,geoids} $(USER),geographiclib@web.sourceforge.net:./
distrib-js: doc/scripts/geographiclib.js
for f in geod-calc.html geod-google{,-instructions}.html \
geographiclib.js \
GeographicLib/{Math,Geodesic{,Line},PolygonArea,DMS,Interface}.js; do \
a=doc/scripts/$$f; b=$(WEBSTAGE)/htdocs/scripts/$$f; \
cmp $$a $$b > /dev/null || install -m 644 $$a $$b; done
rsync --exclude '*~' --exclude '.#*' --exclude '#*' --delete --delete-excluded -av -e ssh $(WEBSTAGE)/htdocs/scripts $(USER),geographiclib@web.sourceforge.net:./htdocs/
distrib-python: python/setup.py
cd python && python setup.py sdist --formats=gztar,zip upload
TAGS:
ls include/GeographicLib/*hpp src/*.cpp tools/*.cpp | xargs etags
.PHONY: distrib-html distrib-files distrib-cgi distrib-js distrib-python TAGS