]> matita.cs.unibo.it Git - helm.git/commitdiff
- resorted module dependencies accordingly to new modules
authorStefano Zacchiroli <zack@upsilon.cc>
Wed, 25 Dec 2002 14:54:27 +0000 (14:54 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Wed, 25 Dec 2002 14:54:27 +0000 (14:54 +0000)
- moved in Makefile.overrides build rules for modules which ship no .mli

helm/DEVEL/ocaml-http/Makefile
helm/DEVEL/ocaml-http/Makefile.overrides [new file with mode: 0644]

index a9495db9d17e6536224de5d1a967492861b45ff2..06a94328ab4bb00024352e955c8a0da9bd199815 100644 (file)
@@ -1,8 +1,9 @@
 include Makefile.defs
 
 MODULES =      \
-       http_types http_constants http_misc http_tcp_server http_common \
-       http_request http_parser http_daemon http_response
+       http_types http_constants http_tcp_server http_parser_sanity    \
+       http_misc http_common http_parser http_message http_request             \
+       http_daemon http_response
 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))
@@ -35,6 +36,7 @@ depend:
        $(OCAMLC) -c $<
 %.cmx: %.ml %.cmi
        $(OCAMLOPT) -c $<
+include Makefile.overrides
 
 non_mt/$(THREADED_SRV).cmo: non_mt/$(THREADED_SRV).ml $(THREADED_SRV).cmi
        cp $(THREADED_SRV).{cmi,mli} non_mt/
diff --git a/helm/DEVEL/ocaml-http/Makefile.overrides b/helm/DEVEL/ocaml-http/Makefile.overrides
new file mode 100644 (file)
index 0000000..62a81b5
--- /dev/null
@@ -0,0 +1,2 @@
+http_types.cmi http_types.cmo: http_types.ml
+       $(OCAMLC) -c $<