Mercurial > mplayer.hg
annotate Gui/Makefile @ 22131:934010b90043
Reserve half of fifo for key release events to help avoiding stop buttons
and remove thus useless hack for mouse wheel.
author | reimar |
---|---|
date | Mon, 05 Feb 2007 17:51:26 +0000 |
parents | ddc54f850d53 |
children | 8bcff5c7e387 |
rev | line source |
---|---|
1693 | 1 include ../config.mak |
2 | |
17396 | 3 LIBNAME = libgui.a |
4 | |
21877 | 5 CFLAGS = -I../loader -I./wm -I./skin |
19998 | 6 #CFLAGS += -DDEBUG |
1693 | 7 |
21877 | 8 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
9 | |
18913 | 10 ifeq ($(TARGET_WIN32),yes) |
11 SRCS = win32/dialogs.c \ | |
12 win32/gui.c \ | |
13 win32/interface.c \ | |
14 win32/playlist.c \ | |
15 win32/preferences.c \ | |
16 win32/skinload.c \ | |
17 win32/widgetrender.c \ | |
19072 | 18 win32/wincfg.c \ |
19 | |
18913 | 20 else |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
21 SRCS = wm/ws.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
22 wm/wsxdnd.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
23 app.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
24 interface.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
25 cfg.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
26 bitmap.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
27 skin/skin.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
28 skin/font.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
29 skin/cut.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
30 mplayer/widgets.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
31 mplayer/play.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
32 mplayer/mw.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
33 mplayer/sw.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
34 mplayer/menu.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
35 mplayer/pb.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
36 mplayer/common.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
37 mplayer/gtk/menu.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
38 mplayer/gtk/mb.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
39 mplayer/gtk/about.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
40 mplayer/gtk/pl.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
41 mplayer/gtk/sb.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
42 mplayer/gtk/fs.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
43 mplayer/gtk/opts.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
44 mplayer/gtk/url.c \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17494
diff
changeset
|
45 mplayer/gtk/eq.c \ |
19072 | 46 mplayer/gtk/common.c \ |
47 | |
18913 | 48 endif |
6625 | 49 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21217
diff
changeset
|
50 include ../mpcommon.mak |
1693 | 51 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21217
diff
changeset
|
52 clean:: |
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21217
diff
changeset
|
53 rm -f mplayer/*.o mplayer/*~ \ |
17494 | 54 mplayer/gtk/*.o mplayer/gtk/*~ \ |
55 skin/*.o skin/*~ \ | |
18913 | 56 wm/*.o wm/*~ \ |
19493 | 57 win32/*.o win32/*~ \ |