aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotin2007-10-02 16:02:13 +0000
committernotin2007-10-02 16:02:13 +0000
commite17dd18ea716f157112fec03ccd03b038464ed06 (patch)
tree8d5f447139fdd484a6bbe778c5ed5f9b2bd0c66d
parent4e886dae911fd9cf88177bea7c877b39f6f3ca0f (diff)
Preventing gcc to generate dependencies wrt OCaml files (otherwise, we run into troubles under Windows)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10166 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--Makefile.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.build b/Makefile.build
index 89ebaf6a10..d8a834e27d 100644
--- a/Makefile.build
+++ b/Makefile.build
@@ -867,7 +867,7 @@ endif
%.c.d: %.c | $(GENHFILES)
$(SHOW)'CCDEP $<'
- $(HIDE)$(CC) -MM -MQ "$@" -MQ "$(<:.c=.o)" $(CFLAGS) $(CINCLUDES) $< > $@ \
+ $(HIDE)$(CC) -MM -MQ "$@" -MQ "$(<:.c=.o)" $(CFLAGS) $< > $@ \
|| ( RV=$$?; rm -f "$@"; exit $${RV} )
.SECONDARY: $(GENFILES)