diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2000-03-09 09:12:28 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2000-03-09 09:12:28 +0000 |
commit | c7b7c24381651908c14ce4540f61998fd96c6e55 (patch) | |
tree | e2c770c9f31f32e59d64bc9afc6537d4b748b0de /test | |
parent | 4aeb255c2d7b0735c13c73e0ccf85835c7c6098c (diff) | |
download | ocaml-c7b7c24381651908c14ce4540f61998fd96c6e55.tar.gz |
Nouveau format de .cma et .cmxa, se rappelle des -cclib et -ccopt necessaires pour le link final
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2930 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'test')
-rw-r--r-- | test/Moretest/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Moretest/Makefile b/test/Moretest/Makefile index 11d5e51841..71a1ce3dd1 100644 --- a/test/Moretest/Makefile +++ b/test/Moretest/Makefile @@ -51,8 +51,8 @@ bigarrays.byt: ../../otherlibs/bigarray/bigarray.cma \ -I ../../otherlibs/bigarray \ -I ../../otherlibs/unix \ unix.cma bigarray.cma bigarrays.ml \ - ../../otherlibs/bigarray/libbigarray.a \ - ../../otherlibs/unix/libunix.a + -ccopt -L../../otherlibs/bigarray \ + -ccopt -L../../otherlibs/unix bigarrays.out: ../../otherlibs/bigarray/bigarray.cmxa \ ../../otherlibs/bigarray/libbigarray.a bigarrays.ml @@ -60,8 +60,8 @@ bigarrays.out: ../../otherlibs/bigarray/bigarray.cmxa \ -I ../../otherlibs/bigarray \ -I ../../otherlibs/unix \ unix.cmxa bigarray.cmxa bigarrays.ml \ - ../../otherlibs/bigarray/libbigarray.a \ - ../../otherlibs/unix/libunix.a + -ccopt -L../../otherlibs/bigarray \ + -ccopt -L../../otherlibs/unix bigarrf.byt: bigarrf.o bigarrfstub.o \ ../../otherlibs/bigarray/bigarray.cma \ @@ -71,8 +71,8 @@ bigarrf.byt: bigarrf.o bigarrfstub.o \ -I ../../otherlibs/unix \ unix.cma bigarray.cma bigarrf.ml \ bigarrf.o bigarrfstub.o \ - ../../otherlibs/bigarray/libbigarray.a \ - ../../otherlibs/unix/libunix.a \ + -ccopt -L../../otherlibs/bigarray \ + -ccopt -L../../otherlibs/unix \ ../../byterun/libcamlrun.a -cclib -lg2c bigarrf.out: bigarrf.o bigarrfstub.o \ @@ -83,8 +83,8 @@ bigarrf.out: bigarrf.o bigarrfstub.o \ -I ../../otherlibs/unix \ unix.cma bigarray.cma bigarrf.ml \ bigarrf.o bigarrfstub.o \ - ../../otherlibs/bigarray/libbigarray.a \ - ../../otherlibs/unix/libunix.a \ + -ccopt -L../../otherlibs/bigarray \ + -ccopt -L../../otherlibs/unix \ ../../byterun/libcamlrun.a -cclib -lg2c bigarrf.o: bigarrf.f |