[MPlayer-cvslog] r21207 - trunk/osdep/Makefile

diego subversion at mplayerhq.hu
Sat Nov 25 10:52:45 CET 2006


Author: diego
Date: Sat Nov 25 10:52:45 2006
New Revision: 21207

Modified:
   trunk/osdep/Makefile

Log:
Simplify LIBNAME target with $@ and $^.


Modified: trunk/osdep/Makefile
==============================================================================
--- trunk/osdep/Makefile	(original)
+++ trunk/osdep/Makefile	Sat Nov 25 10:52:45 2006
@@ -49,8 +49,8 @@
 	windres -o $@ $<
 
 $(LIBNAME):     $(OBJS)
-	$(AR) r $(LIBNAME) $(OBJS)
-	$(RANLIB) $(LIBNAME)
+	$(AR) r $@ $^
+	$(RANLIB) $@
 
 all:    $(LIBNAME)
 



More information about the MPlayer-cvslog mailing list