diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2015-01-20 17:02:26 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2015-01-20 17:02:26 +0000 |
commit | 66af6470a62e688c1197639d3b1bd945a90efd0a (patch) | |
tree | 8245e80b6ada6eb9863b48977dfb9c2316e53490 /otherlibs/num | |
parent | 410a8b599dcae8058c6a99335d7d28e1e0d3acb5 (diff) | |
download | ocaml-66af6470a62e688c1197639d3b1bd945a90efd0a.tar.gz |
PR#5418 (comments) : generate dependencies with $(CC) instead of gcc
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@15784 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/num')
-rw-r--r-- | otherlibs/num/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/num/Makefile b/otherlibs/num/Makefile index e5bcb97cad..c867b2cd26 100644 --- a/otherlibs/num/Makefile +++ b/otherlibs/num/Makefile @@ -31,7 +31,7 @@ bng.$(O): bng.h bng_digit.c \ bng_amd64.c bng_ia32.c bng_ppc.c bng_sparc.c depend: - gcc -MM $(CFLAGS) *.c > .depend + $(CC) -MM $(CFLAGS) *.c > .depend ../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend include .depend |