X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fgetter%2FMakefile;h=ac3abcce4f521f719b21d52831771f5a672770e0;hb=d48c8c8358c9dc4083254d847d7c4ee13d47e6ab;hp=32812a747bdf55fbae37aa58180df4e9095638d3;hpb=298fa826610192b1a173c81b4ebf961c1c7e6609;p=helm.git diff --git a/helm/ocaml/getter/Makefile b/helm/ocaml/getter/Makefile index 32812a747..ac3abcce4 100644 --- a/helm/ocaml/getter/Makefile +++ b/helm/ocaml/getter/Makefile @@ -1,9 +1,27 @@ + PACKAGE = getter -REQUIRES = pxp netclient helm-urimanager -PREDICATES = -INTERFACE_FILES = configuration.mli clientHTTP.mli getter.mli -IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) -EXTRA_OBJECTS_TO_INSTALL = +REQUIRES = \ + http dbm pcre pxp shell zip \ + helm-thread helm-logger helm-urimanager helm-registry + +INTERFACE_FILES = \ + clientHTTP.mli \ + http_getter_debugger.mli \ + http_getter_misc.mli \ + http_getter_const.mli \ + http_getter_env.mli \ + http_getter_common.mli \ + http_getter_map.mli \ + http_getter_cache.mli \ + http_getter.mli + +IMPLEMENTATION_FILES = \ + http_getter_types.ml \ + $(INTERFACE_FILES:%.mli=%.ml) include ../Makefile.common + +test: getter.cma test.ml + $(OCAMLC) -linkpkg -o $@ $^ +