aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotin2006-08-30 16:03:48 +0000
committernotin2006-08-30 16:03:48 +0000
commitbb7d9d0faa9232e6e7fd77680d96f925296e3921 (patch)
tree370e7951fdc42091a99b8b6b3a22d3a25da25fd3 /Makefile
parent3eefaf3578b3149dd6744f728e366e95732e63d6 (diff)
Modification du configure pour paramétrer les exécutables liés à la compilation C
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9099 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 44440ad27c..b71c7c5aa3 100644
--- a/Makefile
+++ b/Makefile
@@ -346,9 +346,6 @@ OBJSCMO=$(CONFIG) $(LIBREP) $(KERNEL) $(LIBRARY) $(PRETYPING) $(INTERP) \
###########################################################################
CINCLUDES= -I $(CAMLHLIB)
-CC=gcc
-AR=ar
-RANLIB=ranlib
ifeq ($(CAMLVERSION),OCAML307)
CFLAGS=-fno-defer-pop -Wall -Wno-unused -DOCAML_307
@@ -1724,8 +1721,8 @@ depend: beforedepend dependp4 ml4filesml
echo `$(CAMLP4DEPS) $$f` >> .depend; \
done
# 5. We express dependencies of .o files
- gcc -MM $(CINCLUDES) kernel/byterun/*.c >> .depend
- gcc -MM $(CINCLUDES) kernel/byterun/*.c | sed -e 's/\.o/.d.o/' >> \
+ $(CC) -MM $(CINCLUDES) kernel/byterun/*.c >> .depend
+ $(CC) -MM $(CINCLUDES) kernel/byterun/*.c | sed -e 's/\.o/.d.o/' >> \
.depend
# 6. Finally, we erase the generated .ml files
rm -f $(ML4FILESML)