From 84c22efdfb825370875763622e6a6747b956cab0 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 15 Jul 2006 23:01:52 +0000 Subject: Create infrastructure to install shared and static libs into different places. based on patch by VĂ­ctor Paesa wzrlpy at arsystel com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 5755 to svn://svn.ffmpeg.org/ffmpeg/trunk --- vhook/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vhook') diff --git a/vhook/Makefile b/vhook/Makefile index dc311b83f3..7e9204c545 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -27,12 +27,12 @@ depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend install: $(HOOKS) - install -d "$(libdir)/vhook" - install -m 755 $(HOOKS) "$(libdir)/vhook" + install -d "$(shlibdir)/vhook" + install -m 755 $(HOOKS) "$(shlibdir)/vhook" uninstall: - rm -f $(addprefix $(libdir)/vhook/,$(ALLHOOKS)) - -rmdir "$(libdir)/vhook/" + rm -f $(addprefix $(shlibdir)/vhook/,$(ALLHOOKS)) + -rmdir "$(shlibdir)/vhook/" %$(SLIBSUF): %.o $(CC) $(LDFLAGS) -g -o $@ $(VHOOKFLAGS) $< -- cgit v1.2.3