diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2008-08-06 08:56:32 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2008-08-06 08:56:32 +0000 |
commit | 8248cebe5d095949439f789e2d0e9ccdfed15f2c (patch) | |
tree | f990459d783621f2b92287252b790ffd5d0ae168 /byterun/Makefile.common | |
parent | b1fbba245a51b59a45dc53a74f37a24f5ed5df11 (diff) | |
download | ocaml-8248cebe5d095949439f789e2d0e9ccdfed15f2c.tar.gz |
PR#3866: Build and install libcamlrun_shared.so
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@8982 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/Makefile.common')
-rwxr-xr-x | byterun/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/Makefile.common b/byterun/Makefile.common index ac6391f765..938d53bac4 100755 --- a/byterun/Makefile.common +++ b/byterun/Makefile.common @@ -37,14 +37,14 @@ PUBLIC_INCLUDES=\ memory.h misc.h mlvalues.h printexc.h signals.h compatibility.h -all: ocamlrun$(EXE) ld.conf libcamlrun.$(A) +all:: ocamlrun$(EXE) ld.conf libcamlrun.$(A) .PHONY: all ld.conf: ../config/Makefile echo "$(STUBLIBDIR)" >ld.conf echo "$(LIBDIR)" >>ld.conf -install: +install:: cp ocamlrun$(EXE) $(BINDIR)/ocamlrun$(EXE) cp libcamlrun.$(A) $(LIBDIR)/libcamlrun.$(A) cd $(LIBDIR); $(RANLIB) libcamlrun.$(A) |