blob: c5f9d5b5f231b2996b3cb531962e11a47b88a61a (
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
|
EXTRA_DIST = stubs.s
#CFLAGS = -DXINE_COMPILE -I wine -fno-omit-frame-pointer \
# -DWIN32_PATH=\"@w32_path@\" -pipe
#CFLAGS = @GLOBAL_CFLAGS@ -DWIN32_PATH=\"@w32_path@\" -I wine -fno-omit-frame-pointer\
# -fno-inline -D__WINE__ -Ddbg_printf=__vprintf -DTRACE=__vprintf
CFLAGS = -DWIN32_PATH=\"@w32_path@\" -I wine -fno-omit-frame-pointer\
-DXINE_COMPILE -D__WINE__ -pipe
SUBDIRS = wine
if HAVE_W32DLL
w32dll_codec = xineplug_decode_w32dll.la
endif
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
##
# IMPORTANT:
# ---------
# All of xine codecs should be named like the scheme "xineplug_decode_"
#
lib_LTLIBRARIES = $(w32dll_codec)
xineplug_decode_w32dll_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 w32codec.c
xineplug_decode_w32dll_la_LDFLAGS = -avoid-version -module
xineplug_decode_w32dll_la_LIBADD = stubs.lo
noinst_HEADERS = loader.h registry.h win32.h wineacm.h w32codec.h
stubs.lo: stubs.s
$(CC) -c $(top_srcdir)/src/libw32dll/stubs.s -o stubs.lo
debug:
$(MAKE) CFLAGS="$(CFLAGS) -g -DSTATIC_WIN32_PATH"
install-debug: debug
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
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
|