summaryrefslogtreecommitdiffstats
path: root/libdvdcss
diff options
context:
space:
mode:
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