summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 17:58:43 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 17:58:43 +0000
commiteee40df587da3f0182c0923fc2d8a42c21c1cee7 (patch)
tree357f8b891fae47675fd499d327e27994febc42b4 /libvo
parent8845289943e5b38dfe97098cba455381439967db (diff)
downloadmpv-eee40df587da3f0182c0923fc2d8a42c21c1cee7.tar.bz2
mpv-eee40df587da3f0182c0923fc2d8a42c21c1cee7.tar.xz
simplify
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21238 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index e90c6ea146..201d405602 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -58,13 +58,13 @@ CFLAGS = $(INCLUDE) $(OPTFLAGS)
all: $(LIBNAME) $(LIBNAME2)
-$(LIBNAME): $(OBJS)
- $(AR) r $(LIBNAME) $(OBJS)
- $(RANLIB) $(LIBNAME)
+$(LIBNAME): $(OBJS)
+ $(AR) r $@ $^
+ $(RANLIB) $@
-$(LIBNAME2): $(OBJS2)
- $(AR) r $(LIBNAME2) $(OBJS2)
- $(RANLIB) $(LIBNAME2)
+$(LIBNAME2): $(OBJS2)
+ $(AR) r $@ $^
+ $(RANLIB) $@
clean:
rm -f *.o *.a *~