From bd645471b8d7e4b594dac98900cd5927938d8852 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 15 Jan 2006 01:56:17 +0000 Subject: Change LIB to LIBNAME to fix compilation. This is in line with the other Makefiles and does not clash with FFmpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17397 b3059339-0415-0410-9bf9-f77b7e298cf2 --- Gui/Makefile | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Gui/Makefile b/Gui/Makefile index 486bc2c34f..7de001f26f 100644 --- a/Gui/Makefile +++ b/Gui/Makefile @@ -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 @@ OBJS = $(SRCS:.c=.o) ### 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 # -- cgit v1.2.3