summaryrefslogtreecommitdiffstats
path: root/gui/Makefile
blob: 777fa031d0e773d35c7b17491d17de35507c5252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
include ../config.mak

LIBNAME_MPLAYER = libgui.a

#CFLAGS += -DDEBUG

ifeq ($(TARGET_WIN32),yes)
SRCS_MPLAYER = bitmap.c \
               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_MPLAYER = app.c \
               bitmap.c \
               cfg.c \
               interface.c \
               mplayer/gui_common.c \
               mplayer/menu.c \
               mplayer/mw.c \
               mplayer/pb.c \
               mplayer/play.c \
               mplayer/sw.c \
               mplayer/widgets.c \
               mplayer/gtk/about.c \
               mplayer/gtk/eq.c \
               mplayer/gtk/fs.c \
               mplayer/gtk/gtk_common.c \
               mplayer/gtk/gtk_url.c \
               mplayer/gtk/mb.c \
               mplayer/gtk/menu.c \
               mplayer/gtk/opts.c \
               mplayer/gtk/pl.c \
               mplayer/gtk/sb.c \
               skin/cut.c \
               skin/font.c \
               skin/skin.c \
               wm/ws.c \
               wm/wsxdnd.c \

endif

include ../mpcommon.mak

clean::
	rm -f mplayer/*.o mplayer/*~ mplayer/gtk/*.o mplayer/gtk/*~ \
              skin/*.o skin/*~ \
              wm/*.o wm/*~ \
              win32/*.o win32/*~ \