summaryrefslogtreecommitdiff
path: root/vhook/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-07-15 23:01:52 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-15 23:01:52 +0000
commit84c22efdfb825370875763622e6a6747b956cab0 (patch)
tree8faed9204e364313d7d6d68c729b264701f74e86 /vhook/Makefile
parent2266e085c98bf5cdbff8cb2ae6f18ac9d84d6a0a (diff)
Create infrastructure to install shared and static libs into different places.
based on patch by VĂ­ctor Paesa wzrlpy at arsystel com Originally committed as revision 5755 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/Makefile')
-rw-r--r--vhook/Makefile8
1 files changed, 4 insertions, 4 deletions
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) $<