mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
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:
parent
0a5dec30b9
commit
bd645471b8
17
Gui/Makefile
17
Gui/Makefile
@ -1,9 +1,8 @@
|
|||||||
|
|
||||||
LIB = libgui.a
|
|
||||||
|
|
||||||
include ../config.mak
|
include ../config.mak
|
||||||
include config.mak
|
include config.mak
|
||||||
|
|
||||||
|
LIBNAME = libgui.a
|
||||||
|
|
||||||
INCDIR = -I. -I.. -I../loader -I./wm -I./skin $(FREETYPE_INC) $(GTKINC) $(EXTRA_INC)
|
INCDIR = -I. -I.. -I../loader -I./wm -I./skin $(FREETYPE_INC) $(GTKINC) $(EXTRA_INC)
|
||||||
|
|
||||||
OPTIMIZE = $(OPTFLAGS)
|
OPTIMIZE = $(OPTFLAGS)
|
||||||
@ -23,15 +22,15 @@ OBJS = $(SRCS:.c=.o)
|
|||||||
|
|
||||||
### TARGETS ###
|
### TARGETS ###
|
||||||
|
|
||||||
$(LIB): .depend $(OBJS)
|
$(LIBNAME): .depend $(OBJS)
|
||||||
rm -f $(LIB)
|
rm -f $(LIBNAME)
|
||||||
$(AR) rc $(LIB) $(OBJS) $(MPLAYEROBJS)
|
$(AR) rc $(LIBNAME) $(OBJS) $(MPLAYEROBJS)
|
||||||
$(RANLIB) $(LIB)
|
$(RANLIB) $(LIBNAME)
|
||||||
|
|
||||||
all: $(LIB)
|
all: $(LIBNAME)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(OBJS) *.o *~ *.bak main $(LIB) .depend
|
rm -rf $(OBJS) *.o *~ *.bak main $(LIBNAME) .depend
|
||||||
|
|
||||||
#dep: depend
|
#dep: depend
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user