diff src/Makefile.in @ 2301:b6c2559cf865

[project @ 1996-06-24 07:28:26 by jwe]
author jwe
date Mon, 24 Jun 1996 07:33:26 +0000
parents 22f40c3d0600
children b3d7a8e3bcc7
line wrap: on
line diff
--- a/src/Makefile.in	Mon Jun 24 07:15:11 1996 +0000
+++ b/src/Makefile.in	Mon Jun 24 07:33:26 1996 +0000
@@ -159,8 +159,9 @@
 OCTAVE_LIBS = -loctinterp -loctave -ltinst -lcruft \
 	$(LIBPLPLOT) -lreadline -lkpathsea -lglob $(LIBDLFCN)
 
-LIBS_TO_INSTALL = liboctinterp.a libtinst.a \
-	liboctinterp.$(SHLEXT) libtinst.$(SHLEXT)
+LIBS_TO_INSTALL = liboctinterp.a libtinst.a
+
+SH_LIBS_TO_INSTALL = liboctinterp.$(SHLEXT) libtinst.$(SHLEXT)
 
 LIBS = @LIBS@
 
@@ -251,6 +252,9 @@
 	for f in $(LIBS_TO_INSTALL); do \
 	  if [ -f $$f ]; then $(INSTALL_DATA) $$f $(libdir)/$$f; fi; \
 	done
+	for f in $(SH_LIBS_TO_INSTALL); do \
+	  if [ -f $$f ]; then $(INSTALL_PROGRAM) $$f $(libdir)/$$f; fi; \
+	done
 .PHONY: install-lib
 
 install-inc:
@@ -279,6 +283,7 @@
 uninstall:
 	rm -f $(bindir)/octave
 	for f in $(LIBS_TO_INSTALL); do rm -f $(libdir)/$$f; done
+	for f in $(SH_LIBS_TO_INSTALL); do rm -f $(libdir)/$$f; done
 	for f in $(INCLUDES) defaults.h oct-conf.h; do \
 	  rm -f $(octincludedir)/$$f; \
 	done