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
This commit is contained in:
diego 2006-01-15 01:56:17 +00:00
parent 0a5dec30b9
commit bd645471b8
1 changed files with 8 additions and 9 deletions

View File

@ -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
#