diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2010-08-02 14:37:22 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2010-08-02 14:37:22 +0000 |
commit | 575555eecd11fcc745e0f1e88d090764b3291b63 (patch) | |
tree | 980663cc4b47a8e706079143a22403de6eda968a /Makefile.nt | |
parent | 7c11c2acf98926b16bfc737dadc64ee3d8eff352 (diff) |
merge changes from branching of 3.12 to release/3.12.0
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10643 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'Makefile.nt')
-rw-r--r-- | Makefile.nt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.nt b/Makefile.nt index c1be1220b..a7e34f599 100644 --- a/Makefile.nt +++ b/Makefile.nt @@ -606,23 +606,23 @@ alldepend:: # Camlp4 camlp4out: ocamlc otherlibraries ocamlbuild-mixed-boot ocamlbuild.byte - OCAMLBUILD_FIND=/usr/bin/find ./build/camlp4-byte-only.sh + ./build/camlp4-byte-only.sh camlp4opt: ocamlopt otherlibrariesopt ocamlbuild-mixed-boot ocamlbuild.native - OCAMLBUILD_FIND=/usr/bin/find ./build/camlp4-native-only.sh + ./build/camlp4-native-only.sh # Ocamlbuild ocamlbuild.byte: ocamlc otherlibraries ocamlbuild-mixed-boot - OCAMLBUILD_FIND=/usr/bin/find ./build/ocamlbuild-byte-only.sh + ./build/ocamlbuild-byte-only.sh ocamlbuild.native: ocamlopt otherlibrariesopt ocamlbuild-mixed-boot - OCAMLBUILD_FIND=/usr/bin/find ./build/ocamlbuild-native-only.sh + ./build/ocamlbuild-native-only.sh ocamlbuildlib.native: ocamlopt otherlibrariesopt ocamlbuild-mixed-boot - OCAMLBUILD_FIND=/usr/bin/find ./build/ocamlbuildlib-native-only.sh + ./build/ocamlbuildlib-native-only.sh .PHONY: ocamlbuild-mixed-boot ocamlbuild-mixed-boot: - OCAMLBUILD_FIND=/usr/bin/find ./build/mixed-boot.sh + ./build/mixed-boot.sh partialclean:: rm -rf _build |