]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/Makefile
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / hbugs / Makefile
diff --git a/helm/hbugs/Makefile b/helm/hbugs/Makefile
deleted file mode 100644 (file)
index 133d009..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-DIRS = meta common broker client tutors
-
-DIRS_BYTE = $(patsubst %,%.byte,$(DIRS))
-DIRS_OPT = $(patsubst %,%.opt,$(DIRS))
-DIRS_CLEAN = $(patsubst %,%.clean,$(DIRS))
-DIRS_DISTCLEAN = $(patsubst %,%.distclean,$(DIRS))
-all: byte
-meta:
-       $(MAKE) -C meta/
-byte: meta $(DIRS_BYTE)
-opt: meta $(DIRS_OPT)
-world: byte opt
-clean: $(DIRS_CLEAN)
-distclean: $(DIRS_DISTCLEAN)
-%.byte:
-       $(MAKE) -C $*/ all
-%.opt:
-       $(MAKE) -C $*/ opt
-%.clean:
-       $(MAKE) -C $*/ clean
-%.distclean:
-       $(MAKE) -C $*/ distclean
-start:
-       $(MAKE) -C broker/ start
-       $(MAKE) -C tutors/ start
-stop:
-       $(MAKE) -C tutors/ stop
-       $(MAKE) -C broker/ stop
-restart: stop start
-.PHONY: all byte opt world clean meta restart start stop