[MPlayer-cvslog] CVS: main/Gui Makefile,1.28,1.29

Diego Biurrun CVS syncmail at mplayerhq.hu
Sun Jan 15 02:56:19 CET 2006


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/Gui
In directory mail:/var2/tmp/cvs-serv32042/Gui

Modified Files:
	Makefile 
Log Message:
Change LIB to LIBNAME to fix compilation.
This is in line with the other Makefiles and does not clash with FFmpeg.


Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/Gui/Makefile,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- Makefile	13 Jan 2006 23:38:16 -0000	1.28
+++ Makefile	15 Jan 2006 01:56:17 -0000	1.29
@@ -1,9 +1,8 @@
-
-LIB	= libgui.a
-
 include ../config.mak
 include config.mak
 
+LIBNAME = libgui.a
+
 INCDIR  = -I. -I.. -I../loader -I./wm -I./skin $(FREETYPE_INC) $(GTKINC) $(EXTRA_INC) 
 
 OPTIMIZE =  $(OPTFLAGS)
@@ -23,15 +22,15 @@
 
 ### TARGETS ###
 
-$(LIB):	.depend	$(OBJS)
-	rm -f $(LIB)
-	$(AR) rc $(LIB) $(OBJS) $(MPLAYEROBJS)
-	$(RANLIB) $(LIB)
+$(LIBNAME): .depend $(OBJS)
+	rm -f $(LIBNAME)
+	$(AR) rc $(LIBNAME) $(OBJS) $(MPLAYEROBJS)
+	$(RANLIB) $(LIBNAME)
 
-all:	$(LIB)
+all:	$(LIBNAME)
 
 clean:
-	rm -rf $(OBJS) *.o *~ *.bak main $(LIB) .depend
+	rm -rf $(OBJS) *.o *~ *.bak main $(LIBNAME) .depend
 
 #dep:	depend
 #




More information about the MPlayer-cvslog mailing list