diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-10-01 12:33:27 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-10-01 12:33:27 +0000 |
commit | 1bc1476a685703c6d56776cedd5aded37571994b (patch) | |
tree | 3141d3b6534c4229a6453f4c6137eb76e3daf455 /stdlib | |
parent | 747fffebea60acc1bbf297cc67a62a231eae7034 (diff) |
Installer les *.p.* aussi
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2105 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index 127dce205..03083cfb7 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -26,7 +26,8 @@ install: installopt: cp stdlib.cmxa stdlib.a std_exit.o *.cmx $(LIBDIR) - cd $(LIBDIR); $(RANLIB) stdlib.a + cp stdlib.p.cmxa stdlib.p.a std_exit.p.o $(LIBDIR) + cd $(LIBDIR); $(RANLIB) stdlib.a; $(RANLIB) stdlib.p.a stdlib.cma: $(OBJS) $(CAMLC) -a -o stdlib.cma $(OBJS) |