From: Sandro Santilli Date: Sat, 6 Aug 2011 18:01:52 +0000 (+0000) Subject: Add static library to {,un}install-liblwgeom rules [RT-SIGTA] X-Git-Tag: 2.0.0alpha1~1145 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=028823de3bbef3717da5082daaca04680d7d9208;p=postgis Add static library to {,un}install-liblwgeom rules [RT-SIGTA] git-svn-id: http://svn.osgeo.org/postgis/trunk@7702 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/Makefile.in b/liblwgeom/Makefile.in index d6f80f961..6031f55d2 100644 --- a/liblwgeom/Makefile.in +++ b/liblwgeom/Makefile.in @@ -96,12 +96,14 @@ all: liblwgeom.a # nothing to install or uninstall install uninstall: -install-liblwgeom: liblwgeom.so +install-liblwgeom: liblwgeom.so liblwgeom.a $(INSTALL) liblwgeom.so $(DESTDIR)$(libdir)/liblwgeom.so.$(SOVER) + $(INSTALL) liblwgeom.a $(DESTDIR)$(libdir)/liblwgeom.a @echo "Remember to run ldconfig" uninstall-liblwgeom: rm -f $(DESTDIR)$(libdir)/liblwgeom.so.$(SOVER) + rm -f $(DESTDIR)$(libdir)/liblwgeom.a liblwgeom.a: $(SA_OBJS) $(NM_OBJS) $(SA_HEADERS) ar rs liblwgeom.a $(SA_OBJS) $(NM_OBJS)