From 7b4015bf3bc05dd926ebc1d4b798e6cadb7b91a1 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 25 Nov 2006 17:09:25 +0000 Subject: more consistency with the other Makefiles. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21230 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libdvdcss/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libdvdcss') 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 -- cgit v1.2.3