X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhbugs%2FMakefile;h=133d009f33633a5e35b1e2f52306a8eb49d631e0;hb=d3c72d6856cd185e5b3e9f2e8b928b78c7031ed1;hp=0ea2557b329ada3c07b63720127f32cb7fce3be4;hpb=5a2bef9e64bb5888900ec2a05ca8eb7a4e58a4d6;p=helm.git diff --git a/helm/hbugs/Makefile b/helm/hbugs/Makefile index 0ea2557b3..133d009f3 100644 --- a/helm/hbugs/Makefile +++ b/helm/hbugs/Makefile @@ -1,8 +1,9 @@ -DIRS = common broker client +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/ @@ -10,11 +11,20 @@ byte: meta $(DIRS_BYTE) opt: meta $(DIRS_OPT) world: byte opt clean: $(DIRS_CLEAN) - $(MAKE) -C meta/ clean +distclean: $(DIRS_DISTCLEAN) %.byte: $(MAKE) -C $*/ all %.opt: $(MAKE) -C $*/ opt %.clean: $(MAKE) -C $*/ clean -.PHONY: all byte opt world clean meta +%.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