blob: 7fb454cdd06a490c79d4918dbbe2b013fe6704fa (
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
|
EXTRA_DIST = stubs.s
noinst_LTLIBRARIES = $(wine_lib)
##
## this wine lib seems to be very sensitive with cflags, so we override
## all of them.
##
CFLAGS = @BUILD_LIB_STATIC@ -fno-omit-frame-pointer @X_CFLAGS@ \
-DWIN32_PATH=\"@w32_path@\" -pipe
DEBUG_CFLAGS = @BUILD_LIB_STATIC@ -fno-omit-frame-pointer @X_CFLAGS@ \
-pipe -g -DSTATIC_WIN32_PATH
if HAVE_W32DLL
wine_lib = libwine.la
endif
libwine_la_SOURCES = afl.c elfdll.c module.c pe_resource.c \
resource.c win32.c driver.c ext.c \
pe_image.c registry.c vfl.c
libwine_la_LIBADD = stubs.lo
noinst_HEADERS = avifmt.h elfdll.h msacm.h pshpack1.h winbase.h \
winnt.h basetsd.h heap.h msacmdrv.h pshpack2.h\
windef.h winreg.h config.h ldt.h ntdef.h \
pshpack4.h windows.h winuser.h debugtools.h mmreg.h \
pe_image.h pshpack8.h winerror.h driver.h module.h \
poppack.h vfw.h loader.h registry.h win32.h \
wineacm.h winestring.h
stubs.lo: stubs.s
$(CC) -c $(top_srcdir)/src/libw32dll/wine/stubs.s -o stubs.lo
debug:
$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|