X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2FMakefile;fp=helm%2FMakefile;h=0000000000000000000000000000000000000000;hp=ffab1984d244a6642fe7f82fe0f48bdb089b4592;hb=1696761e4b8576e8ed81caa905fd108717019226;hpb=5325734bc2e4927ed7ec146e35a6f0f2b49f50c1 diff --git a/helm/Makefile b/helm/Makefile deleted file mode 100644 index ffab1984d..000000000 --- a/helm/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -DIRS = ocaml gTopLevel searchEngine mathql_test hxp - -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