summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-27 01:40:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-27 01:40:39 +0000
commite6b3cc9b3d102d0ff77ca6a137e5a53408c86b8d (patch)
tree71590a4c9cfe02bc24d7ad5f341fed416e7eb103 /libvo
parent42bf94ecc7341a679baa7d0770078a3ac6d4a57a (diff)
downloadmpv-e6b3cc9b3d102d0ff77ca6a137e5a53408c86b8d.tar.bz2
mpv-e6b3cc9b3d102d0ff77ca6a137e5a53408c86b8d.tar.xz
Move common code for generating multiple libraries to mpcommon.mak.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21303 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index 77e5100966..b07c0ab62f 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -1,12 +1,9 @@
include ../config.mak
-LIBNAME = libvo.a
LIBNAME2 = libosd.a
-
-LIBS =$(LIBNAME2)
ifeq ($(MPLAYER),yes)
-LIBS+=$(LIBNAME)
+LIBNAME = libvo.a
endif
SRCS=aspect.c \
@@ -45,9 +42,3 @@ include ../mpcommon.mak
.m.o:
$(CC) -c $(CFLAGS) -o $@ $<
-
-all: $(LIBS)
-
-$(LIBNAME2): $(OBJS2)
- $(AR) r $@ $^
- $(RANLIB) $@