blob: 70341a502ad389a4277f536a3be9bf73f2a18112 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
include $(top_srcdir)/misc/Makefile.common
LIBTOOL = $(SHELL) $(top_builddir)/libtool
EXTRA_DIST = stubs.s wrapper.S
noinst_LTLIBRARIES = $(wine_lib)
AM_CFLAGS = $(X_CFLAGS) @W32_NO_OPTIMIZE@ \
-Wmissing-prototypes -Wimplicit-function-declaration \
-DWIN32_PATH=\"@w32_path@\" -I$(srcdir)/.. -D__WINE__ \
-Ddbg_printf=__vprintf -DTRACE=__vprintf \
-I$(top_srcdir)/src/xine-utils
# CFLAGS is here to filter out -fomit-frame-pointer,
# -finline-functions and -frename-registers because they cause bad
# behavior of wine
CFLAGS = `echo @CFLAGS@ | sed -e 's/-fomit-frame-pointer//g;s/-finline-functions//g;s/-frename-registers//g'`
if HAVE_W32DLL
wine_lib = libwine.la
endif
libwine_la_SOURCES = \
afl.c \
driver.c \
elfdll.c \
ext.c \
ldt_keeper.c \
module.c \
pe_image.c \
pe_resource.c \
resource.c \
registry.c \
vfl.c \
win32.c \
stubs.s \
wrapper.S
noinst_HEADERS = \
avifmt.h \
basetsd.h \
com.h \
debugtools.h \
driver.h \
elfdll.h \
ext.h \
heap.h \
ldt.h \
ldt_keeper.h \
loader.h \
mmreg.h \
module.h \
msacm.h \
msacmdrv.h \
ntdef.h \
pe_image.h \
poppack.h \
pshpack1.h \
pshpack2.h \
pshpack4.h \
pshpack8.h \
registry.h \
resource.h \
vfw.h \
win32.h\
wineacm.h \
winbase.h \
windef.h \
windows.h \
winerror.h \
winestring.h \
winnt.h \
winreg.h \
winuser.h \
wrapper.h
|