[svn r6518] If this doesn't work I'm going to give up and go to bed.

This commit is contained in:
dave 2004-09-20 00:46:42 +02:00
parent aa2976e355
commit 57ff8e61d3

View File

@ -4,7 +4,6 @@ dataset_path = dataset/loser
surveydir_path = surveys
cavern_flags = -qq -s
tar_flags = -cz --exclude "*/CVS" --ignore-case -f
svxtrace_cmd = find -name "*.svx"
###########
@ -39,16 +38,16 @@ surveytable:
3dfiles: noinfo/all.3d smkridge/204/204.3d smkridge/234/234.3d plateau/76/76.3d
noinfo/all.3d: $(shell $(svxtrace_cmd) $(dataset_path))
noinfo/all.3d: $(shell find $(dataset_path) -name "*.svx"))
cavern $(cavern_flags) $(dataset_path)/all -o noinfo/all.3d
smkridge/204/204.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/204)
smkridge/204/204.3d: $(shell find $(dataset_path)/caves/204 -name "*.svx"))
cavern $(cavern_flags) $(dataset_path)/caves/204/204 -o smkridge/204/204.3d
smkridge/234/234.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/234)
smkridge/234/234.3d: $(shell find $(dataset_path)/caves/234 -name "*.svx"))
cavern $(cavern_flags) $(dataset_path)/caves/234/234 -o smkridge/234/234.3d
plateau/76/76.3d: $(shell $(svxtrace_cmd) $(dataset_path)/caves/76/)
plateau/76/76.3d: $(shell find $(dataset_path)/caves/76/ -name "*.svx")
cavern $(cavern_flags) $(dataset_path)/caves/76/76 -o plateau/76/76.3d
###########