]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/Makefile
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / Makefile
diff --git a/helm/Makefile b/helm/Makefile
deleted file mode 100644 (file)
index 721a896..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-DIRS = ocaml hbugs gTopLevel searchEngine mathql_test
-
-DIRS_BYTE = $(patsubst %,%.byte,$(DIRS))
-DIRS_OPT = $(patsubst %,%.opt,$(DIRS))
-DIRS_CLEAN = $(patsubst %,%.clean,$(DIRS))
-all: byte
-byte: $(DIRS_BYTE)
-opt: $(DIRS_OPT)
-world: byte opt
-clean: $(DIRS_CLEAN)
-%.byte:
-       $(MAKE) -C $*/ all
-%.opt:
-       $(MAKE) -C $*/ opt
-%.clean:
-       $(MAKE) -C $*/ clean
-.PHONY: all byte opt world clean