summaryrefslogtreecommitdiffstats
path: root/Make.rules.in
diff options
context:
space:
mode:
Diffstat (limited to 'Make.rules.in')
-rw-r--r--Make.rules.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Make.rules.in b/Make.rules.in
index 6a56728..b22fdf6 100644
--- a/Make.rules.in
+++ b/Make.rules.in
@@ -47,11 +47,11 @@ depend: .depend
ifneq ($(OCAMLFIND),)
.depend: $(wildcard *.mli) $(wildcard *.ml)
rm -f .depend
- $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) $^ > $@
+ $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) $(OCAMLDEPFLAGS) $^ > $@
else
.depend: $(wildcard *.mli) $(wildcard *.ml)
rm -f .depend
- $(OCAMLDEP) $(OCAMLCINCS) $^ > $@
+ $(OCAMLDEP) $(OCAMLCINCS) $(OCAMLDEPFLAGS) $^ > $@
endif
ifeq ($(wildcard .depend),.depend)