diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-15 23:01:52 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-15 23:01:52 +0000 |
commit | 84c22efdfb825370875763622e6a6747b956cab0 (patch) | |
tree | 8faed9204e364313d7d6d68c729b264701f74e86 /vhook | |
parent | 2266e085c98bf5cdbff8cb2ae6f18ac9d84d6a0a (diff) | |
download | ffmpeg-84c22efdfb825370875763622e6a6747b956cab0.tar.gz |
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')
-rw-r--r-- | vhook/Makefile | 8 |
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) $< |