changeset 21222:05783b74ef64

simplify
author diego
date Sat, 25 Nov 2006 17:58:43 +0000
parents 7124c26f3db3
children 8a52c3139152
files libvo/Makefile
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/Makefile	Sat Nov 25 17:58:33 2006 +0000
+++ b/libvo/Makefile	Sat Nov 25 17:58:43 2006 +0000
@@ -58,13 +58,13 @@
 
 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 *~