[MPlayer-cvslog] r21244 - trunk/libmpcodecs/Makefile

diego subversion at mplayerhq.hu
Sat Nov 25 19:45:03 CET 2006


Author: diego
Date: Sat Nov 25 19:45:03 2006
New Revision: 21244

Modified:
   trunk/libmpcodecs/Makefile

Log:
simplify


Modified: trunk/libmpcodecs/Makefile
==============================================================================
--- trunk/libmpcodecs/Makefile	(original)
+++ trunk/libmpcodecs/Makefile	Sat Nov 25 19:45:03 2006
@@ -323,13 +323,13 @@
 
 all:    $(LIBS)
 
-$(LIBNAME):     $(OBJS)
-	$(AR) r $(LIBNAME) $(OBJS)
-	$(RANLIB) $(LIBNAME)
-
-$(LIBNAME2):     $(OBJS2)
-	$(AR) r $(LIBNAME2) $(OBJS2)
-	$(RANLIB) $(LIBNAME2)
+$(LIBNAME): $(OBJS)
+	$(AR) r $@ $^
+	$(RANLIB) $@
+
+$(LIBNAME2): $(OBJS2)
+	$(AR) r $@ $^
+	$(RANLIB) $@
 
 clean:
 	rm -f *.o *.a *~



More information about the MPlayer-cvslog mailing list