summaryrefslogtreecommitdiffstats
path: root/libdvdcss
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 17:09:25 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 17:09:25 +0000
commit7b4015bf3bc05dd926ebc1d4b798e6cadb7b91a1 (patch)
tree50a9f0e3013bf8e7e5bfbaf96cdeb922180f3468 /libdvdcss
parent8f167fc5c563d316be4a2d9a735e8c775e155526 (diff)
downloadmpv-7b4015bf3bc05dd926ebc1d4b798e6cadb7b91a1.tar.bz2
mpv-7b4015bf3bc05dd926ebc1d4b798e6cadb7b91a1.tar.xz
more consistency with the other Makefiles.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21230 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdvdcss')
-rw-r--r--libdvdcss/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/libdvdcss/Makefile b/libdvdcss/Makefile
index 6a88ac02a8..33b3c5469d 100644
--- a/libdvdcss/Makefile
+++ b/libdvdcss/Makefile
@@ -12,7 +12,7 @@ SRCS = css.c \
OBJS = $(SRCS:.c=.o)
-LIB=libdvdcss
+LIBNAME = libdvdcss.a
.SUFFIXES: .c .o
@@ -31,11 +31,11 @@ endif
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
-all: $(LIB).a
+all: $(LIBNAME)
-$(LIB).a: $(OBJS)
- $(AR) rc $(LIB).a $(OBJS)
- $(RANLIB) $(LIB).a
+$(LIBNAME): $(OBJS)
+ $(AR) rc $@ $^
+ $(RANLIB) $@
clean:
rm -f *.o *.a *~ *.so