diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-08-06 09:06:33 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-08-06 09:06:33 +0000 |
commit | a49cf7b08cee65389bf08322120bcd862b9a4ae7 (patch) | |
tree | 34ae7096e13bfed63aba50016739eb945999e84b | |
parent | 8509d4fc2e3a61ecdbccc9bec453e336a5926247 (diff) |
Enlever les .so qui pourraient rester d'une install de 3.04
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5084 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -233,6 +233,9 @@ install: FORCE if test -d $(LIBDIR); then : ; else $(MKDIR) $(LIBDIR); fi if test -d $(STUBLIBDIR); then : ; else $(MKDIR) $(LIBDIR)/stublibs; fi if test -d $(MANDIR)/man$(MANEXT); then : ; else $(MKDIR) $(MANDIR)/man$(MANEXT); fi + cd $(LIBDIR); rm -f dllbigarray.so dlllabltk.so dllnums.so \ + dllthreads.so dllunix.so dllgraphics.so dllmldbm.so dllstr.so \ + dlltkanim.so cd byterun; $(MAKE) install echo "$(STUBLIBDIR)" > $(LIBDIR)/ld.conf echo "$(LIBDIR)" >> $(LIBDIR)/ld.conf |