mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-09 07:14:36 +00:00
[svn r6514] Mainly link fettling; also added Makefile into CVS, and put in survey data stuff
This commit is contained in:
86
Makefile
Normal file
86
Makefile
Normal file
@@ -0,0 +1,86 @@
|
||||
# Makefile to run the various scripts needed once CVS updates have been performed.
|
||||
|
||||
dataset_path = dataset/loser
|
||||
surveydir_path = surveys
|
||||
cavern_flags = -qq -s
|
||||
tar_flags = -cz --exclude "*/CVS" --ignore-case -f
|
||||
svxtrace_cmd = python ../svxtrace.py
|
||||
|
||||
###########
|
||||
|
||||
everything: autogen_pages folklist 3dfiles tarfiles
|
||||
|
||||
###########
|
||||
|
||||
autogen_pages: indxal.htm
|
||||
|
||||
indxal.htm: noinfo/CAVETAB2.CSV noinfo/all.pos noinfo/make-indxal4.pl
|
||||
cd noinfo; perl ./make-indxal4.pl -q CAVETAB2.CSV
|
||||
|
||||
noinfo/all.pos: noinfo/all.3d
|
||||
3dtopos noinfo/all.3d noinfo/all.pos
|
||||
|
||||
###########
|
||||
|
||||
folklist: folk/index.htm
|
||||
|
||||
folk/index.htm: noinfo/folk.csv noinfo/make-folklist.py
|
||||
python noinfo/make-folklist.py < noinfo/folk.csv > folk/index.htm
|
||||
|
||||
###########
|
||||
|
||||
surveytable:
|
||||
cd $(surveydir_path); perl tablize-csv.pl Surveys.csv
|
||||
|
||||
# Output depends on entire contents of the survey tree; the script is
|
||||
# quite quick anyway so we might as well run it every time.
|
||||
|
||||
###########
|
||||
|
||||
3dfiles: noinfo/all.3d smkridge/204/204.3d smkridge/234/234.3d plateau/76/76.3d
|
||||
|
||||
noinfo/all.3d: $(shell $(svxtrace_cmd) $(dataset_path)/all)
|
||||
cavern $(cavern_flags) $(dataset_path)/all -o noinfo/all.3d
|
||||
|
||||
smkridge/204/204.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/204/204)
|
||||
cavern $(cavern_flags) $(dataset_path)/caves/204/204 -o smkridge/204/204.3d
|
||||
|
||||
smkridge/234/234.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/234/234)
|
||||
cavern $(cavern_flags) $(dataset_path)/caves/234/234 -o smkridge/234/234.3d
|
||||
|
||||
plateau/76/76.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/76/76.svx)
|
||||
cavern $(cavern_flags) $(dataset_path)/caves/76/76 -o plateau/76/76.3d
|
||||
|
||||
###########
|
||||
|
||||
tarfiles: noinfo/all.tgz smkridge/204/surveydata.tgz smkridge/234/surveydata.tgz plateau/76/surveydata.tgz
|
||||
|
||||
noinfo/all.tgz: noinfo/all.3d
|
||||
tar $(tar_flags) noinfo/all.tgz $(dataset_path)
|
||||
|
||||
smkridge/204/surveydata.tgz: smkridge/204/204.3d
|
||||
tar $(tar_flags) smkridge/204/surveydata.tgz $(dataset_path)/caves/204
|
||||
|
||||
smkridge/234/surveydata.tgz: smkridge/234/234.3d
|
||||
tar $(tar_flags) smkridge/234/surveydata.tgz $(dataset_path)/caves/234
|
||||
|
||||
plateau/76/surveydata.tgz: plateau/76/76.3d
|
||||
tar $(tar_flags) plateau/76/surveydata.tgz $(dataset_path)/caves/76
|
||||
|
||||
# (tarfiles depend on 3d files to avoid running the
|
||||
# expensive $(shell ...) commands more than necessary.)
|
||||
|
||||
###########
|
||||
|
||||
clean:
|
||||
cut -d "," -f 6 noinfo/CAVETAB2.CSV | xargs rm -f
|
||||
rm -f indxal.htm folk/index.htm noinfo/all.pos
|
||||
rm -f noinfo/all.3d smkridge/204/204.3d smkridge/234/234.3d plateau/76/76.3d
|
||||
rm -f smkridge/204/surveydata.tgz smkridge/234/surveydata.tgz noinfo/all.tgz
|
||||
rm -f surveys/surveytable.html
|
||||
|
||||
###########
|
||||
|
||||
report: everything
|
||||
rm -f report.html
|
||||
bigbro -ohtml report.html -local -fragments -failures -rec .* -ignore ".*/jnl/.*" -ignore ".*/icons/.*" -ignore ".*rdmap.*" -ignore ".*/cp/.*" -ignore ".*/surveys/.*" -ignore ".*smkridge/index.htm" index.htm
|
||||
Reference in New Issue
Block a user