X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Focaml-http%2FMakefile;h=94e38968584fb865b722fb6753c9f33c8b308c0e;hb=84da82981de31834b38693a8da428373571b556f;hp=5a63b43229ef13c96c9d2ab99b2ab9c788caa71a;hpb=15cc3bd312cb798ebb87e39bbc7a84a7f393478a;p=helm.git diff --git a/helm/DEVEL/ocaml-http/Makefile b/helm/DEVEL/ocaml-http/Makefile index 5a63b4322..94e389685 100644 --- a/helm/DEVEL/ocaml-http/Makefile +++ b/helm/DEVEL/ocaml-http/Makefile @@ -7,7 +7,8 @@ MODULES = \ THREADED_SRV = http_threaded_tcp_server MODULES_MT = $(patsubst http_tcp_server, mt/$(THREADED_SRV) http_tcp_server, $(MODULES)) MODULES_NON_MT = $(patsubst http_tcp_server, non_mt/$(THREADED_SRV) http_tcp_server, $(MODULES)) -PUBLIC_MODULES = http_common http_types http_request http_daemon http_response +PUBLIC_MODULES = http_common http_request http_daemon http_response +PUBLIC_IMPL = http_types DESTDIR = $(shell $(OCAMLFIND) printconf stdlib) all: all_non_mt all_mt @@ -18,7 +19,8 @@ all_mt: http_mt.cma opt_mt: http_mt.cmxa world: all opt doc: *.mli - $(OCAMLDOC) -html -d doc/html *.mli + $(OCAMLDOC) -html -d doc/html \ + *.mli $(patsubst %, %.ml, $(PUBLIC_IMPL)) examples: $(MAKE) -C examples/ @@ -80,11 +82,13 @@ dist: distreal distrm distreal: distclean depend if [ -d $(DISTDIR) ]; then rm -rf $(DISTDIR); else true; fi mkdir $(DISTDIR) - cp -r \ - $(patsubst %, %.ml, $(MODULES)) \ - $(patsubst %, %.mli, $(MODULES) $(THREADED_SRV)) \ - mt/ non_mt/ $(EXTRA_DIST) examples/ debian/ \ - $(DISTDIR)/ + for f in \ + $(patsubst %, %.ml, $(MODULES)) \ + $(patsubst %, %.mli, $(MODULES) $(THREADED_SRV)) \ + mt/ non_mt/ $(EXTRA_DIST) examples/ debian/; \ + do \ + cp -r $$f $(DISTDIR)/; \ + done -find $(DISTDIR)/ -type d -name CVS -exec rm -rf {} \; -find $(DISTDIR)/ -type f -name ".cvs*" -exec rm -f {} \; tar cvzf $(DISTDIR).tar.gz $(DISTDIR)/ @@ -96,6 +100,7 @@ deb: distreal install: META $(OCAMLFIND) install -destdir $(DESTDIR) $(PKGNAME) \ $(patsubst %, %.mli, $(PUBLIC_MODULES)) \ + $(patsubst %, %.ml, $(PUBLIC_IMPL)) \ $(patsubst %, %.cmi, $(PUBLIC_MODULES)) \ http{,_mt}.cm{,x}a http{,_mt}.a META