]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/metadata/create_V7_mowgli/Makefile
(Very)* Old stuff removed.
[helm.git] / helm / metadata / create_V7_mowgli / Makefile
diff --git a/helm/metadata/create_V7_mowgli/Makefile b/helm/metadata/create_V7_mowgli/Makefile
deleted file mode 100644 (file)
index 4f871e4..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-all:
-       @echo Available targets:
-       @echo "   forward, backward, compress, clean-forward, clean-backward"
-
-forward:
-       time for i in `cat tipi_induttivi.txt` ; do (cd tmp ; wget -t 1 -O downloaded.xml.gz "http://mowgli.cs.unibo.it:58081/getxml?format=gz&uri=$$i") ; zcat tmp/downloaded.xml.gz > tmp/inductive_type.xml ; METADATA/meta_ind $$i ; rm -f tmp/downloaded.xml.gz tmp/inductive_type.xml; done > log 2>&1
-       time for i in `cat costanti_e_variabili.txt` ; do (cd tmp ; wget -t 1 -O downloaded.xml.gz "http://mowgli.cs.unibo.it:58081/getxml?format=gz&uri=$$i" ; wget -t 1 -O downloaded_body.xml.gz "http://mowgli.cs.unibo.it:58081/getxml?format=gz&uri=$$i.body"); zcat tmp/downloaded.xml.gz > tmp/type.xml ; zcat tmp/downloaded_body.xml.gz > tmp/body.xml ; METADATA/meta $$i ; rm -f tmp/downloaded.xml.gz tmp/downloaded_body.xml.gz tmp/type.xml tmp/body.xml ; done > log 2>&1
-
-backward:
-       time for i in `cat all_objects.txt` ; do touch/touch.opt $$i ; done
-       find forward -type f -exec ./invert.pl {} \;
-       find backward -type f -exec ./fix_rdf.pl {} \;
-       (cd backward ; ../mkindex.sh backward)
-
-compress:
-       find forward -name "*.xml" -exec gzip {} \;
-       find backward -name "*.xml" -exec gzip {} \;
-       (cd forward ; ../mkindex.sh forward)
-       (cd backward ; ../mkindex.sh backward)
-
-clean-forward:
-       rm -rf forward_rel.xml forward_sort.xml forward/*
-
-clean-backward:
-       rm -rf backward/*
-
-.PHONY: all forward backward compress clean-forward clean-backward