summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 12:10:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 12:10:57 +0000
commit60b39e278621374569859f78170c1c170bf84c85 (patch)
treea534407525d96137730d8880e7dfe07d93f77f60 /Gui
parent39414b500ab130de25730121b5a5bb4c03f4ad32 (diff)
downloadmpv-60b39e278621374569859f78170c1c170bf84c85.tar.bz2
mpv-60b39e278621374569859f78170c1c170bf84c85.tar.xz
Give more descriptive names to the source and library variables and split
between common, MPlayer-specific and MEncoder-specific parts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22546 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index 838378d7ee..83e0e256ef 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -1,6 +1,6 @@
include ../config.mak
-LIBNAME = libgui.a
+LIBNAME_MPLAYER = libgui.a
CFLAGS = -I../loader -I./wm -I./skin
#CFLAGS += -DDEBUG
@@ -8,7 +8,7 @@ CFLAGS = -I../loader -I./wm -I./skin
CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil
ifeq ($(TARGET_WIN32),yes)
-SRCS = win32/dialogs.c \
+SRCS_MPLAYER = win32/dialogs.c \
win32/gui.c \
win32/interface.c \
win32/playlist.c \
@@ -18,7 +18,7 @@ SRCS = win32/dialogs.c \
win32/wincfg.c \
else
-SRCS = wm/ws.c \
+SRCS_MPLAYER = wm/ws.c \
wm/wsxdnd.c \
app.c \
interface.c \