summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-15 01:56:17 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-15 01:56:17 +0000
commitbd645471b8d7e4b594dac98900cd5927938d8852 (patch)
treec9382c5b3f2dce986629b8da65c14303b40687c9 /Gui
parent0a5dec30b9de23d3dde35e486844266331bd7109 (diff)
downloadmpv-bd645471b8d7e4b594dac98900cd5927938d8852.tar.bz2
mpv-bd645471b8d7e4b594dac98900cd5927938d8852.tar.xz
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
Diffstat (limited to 'Gui')
-rw-r--r--Gui/Makefile17
1 files 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
#