diff options
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) |