From: Stefano Zacchiroli Date: Wed, 27 Nov 2002 13:59:11 +0000 (+0000) Subject: patched Makefile to link also ../gTopLevel/mQueryLevels.cm{o,x} which X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=e9fa9ed4a406a66a1955bfd7ec4e0f76cec15eb3;p=helm.git patched Makefile to link also ../gTopLevel/mQueryLevels.cm{o,x} which were splitted away from ../gTopLevel/mQueryGenerator.cm{o,x} --- diff --git a/helm/searchEngine/Makefile b/helm/searchEngine/Makefile index 3d979cd34..7be42086c 100644 --- a/helm/searchEngine/Makefile +++ b/helm/searchEngine/Makefile @@ -5,8 +5,9 @@ OCAMLOPTIONS = -package "$(REQUIRES)" -pp camlp4o -I ../gTopLevel -thread OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) -LIBRARIES = ../gTopLevel/mQueryGenerator.cmo -LIBRARIES_OPT = ../gTopLevel/mQueryGenerator.cmx +GTOPLEVEL_MODULES = mQueryLevels mQueryGenerator +LIBRARIES = $(patsubst %,../gTopLevel/%.cmo,$(GTOPLEVEL_MODULES)) +LIBRARIES_OPT = $(patsubst %,../gTopLevel/%.cmx,$(GTOPLEVEL_MODULES)) all: searchEngine opt: searchEngine.opt