summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorvayne <vayne@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-06 01:51:31 +0000
committervayne <vayne@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-06 01:51:31 +0000
commitc5cf04f5430fa3a44ea1d92d5bcf75ca0623f5a7 (patch)
treef3bf4919423e38dab02ffedf57bae2379839b638 /Gui
parent71045b33a33f4b3c4c05621a80f059840879bb97 (diff)
downloadmpv-c5cf04f5430fa3a44ea1d92d5bcf75ca0623f5a7.tar.bz2
mpv-c5cf04f5430fa3a44ea1d92d5bcf75ca0623f5a7.tar.xz
Initial win32 gui release.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18918 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index 346be565ee..3e499ef443 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -9,6 +9,16 @@ OPTIMIZE = $(OPTFLAGS)
CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG)
+ifeq ($(TARGET_WIN32),yes)
+SRCS = win32/dialogs.c \
+ win32/gui.c \
+ win32/interface.c \
+ win32/playlist.c \
+ win32/preferences.c \
+ win32/skinload.c \
+ win32/widgetrender.c \
+ win32/wincfg.c
+else
SRCS = wm/ws.c \
wm/wsxdnd.c \
app.c \
@@ -34,8 +44,8 @@ SRCS = wm/ws.c \
mplayer/gtk/opts.c \
mplayer/gtk/url.c \
mplayer/gtk/eq.c \
- mplayer/gtk/common.c \
-
+ mplayer/gtk/common.c
+endif
OBJS = $(SRCS:.c=.o)
.SUFFIXES: .c .o
@@ -57,7 +67,8 @@ clean:
mplayer/*.o mplayer/*~ \
mplayer/gtk/*.o mplayer/gtk/*~ \
skin/*.o skin/*~ \
- wm/*.o wm/*~
+ wm/*.o wm/*~ \
+ win32/*.o
#dep: depend
#