]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/metadata/Makefile
This commit was manufactured by cvs2svn to create branch 'moogle'.
[helm.git] / helm / metadata / Makefile
diff --git a/helm/metadata/Makefile b/helm/metadata/Makefile
deleted file mode 100644 (file)
index a651c58..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-FILLDB=fill_db.sql
-INDUCTIVETYPES=inductive_types.txt
-CONSTANTSANDVARIABLES=constants_and_variables.txt
-ALLOBJECTS=all_objects.txt
-GETTERURL=http://mowgli.cs.unibo.it:58081
-
-all:
-       @echo "try one of:"
-       @echo "  make indexes"
-       @echo "  make drop_tables"
-       @echo "  make create_tables"
-       @echo "  make $(FILLDB)"
-       @echo "  make fill_db"
-
-$(FILLDB):
-       rm -f $(FILLDB)
-       time for i in `cat $(INDUCTIVETYPES)` ; do (cd tmp ; wget -t 1 -O downloaded.xml.gz "$(GETTERURL)/getxml?format=gz&uri=$$i") ; zcat tmp/downloaded.xml.gz > tmp/inductive_type.xml ; extractor/meta_ind $$i "tmp/inductive_type.xml" >> $(FILLDB) ; rm -f tmp/downloaded.xml.gz tmp/inductive_type.xml; done > log 2>&1
-       time for i in `cat $(CONSTANTSANDVARIABLES)` ; do (cd tmp ; wget -t 1 -O downloaded.xml.gz "$(GETTERURL)/getxml?format=gz&uri=$$i" ; wget -t 1 -O downloaded_body.xml.gz "$(GETTERURL)/getxml?format=gz&uri=$$i.body"); zcat tmp/downloaded.xml.gz > tmp/type.xml ; zcat tmp/downloaded_body.xml.gz > tmp/body.xml ; extractor/meta $$i "tmp/body.xml" "tmp/type.xml" >> $(FILLDB) ; rm -f tmp/downloaded.xml.gz tmp/downloaded_body.xml.gz tmp/type.xml tmp/body.xml ; done > log 2>&1
-
-indexes:
-       wget "$(GETTERURL)/getalluris?format=txt" -O - | grep -v "\\.body$$" | grep -v "\\.types$$" | grep -v "\\.proof_tree$$" | sort > $(ALLOBJECTS)
-       cat $(ALLOBJECTS) | grep "\\.ind$$" > $(INDUCTIVETYPES)
-       cat $(ALLOBJECTS) | grep -v "\\.ind$$" > $(CONSTANTSANDVARIABLES)
-
-drop_tables:
-       cat sql/drop_mowgli_tables.sql | mysql -pbjIcRpru -u helmadmin mowgli
-
-create_tables:
-       cat sql/create_mowgli_tables.sql | mysql -pbjIcRpru -u helmadmin mowgli
-
-fill_db:
-       cat $(FILLDB) | mysql -pbjIcRpru -u helmadmin mowgli
-
-.PHONY: all create_tables drop_tables fill_db indexes $(FILLDB)