| Line | |
|---|
| 1 |
|
|---|
| 2 |
# Makefile to build MPlayer's DLL loader |
|---|
| 3 |
# from VLC trunk |
|---|
| 4 |
# |
|---|
| 5 |
# by Rémi Denis-Courmont <rem # videolan.org> |
|---|
| 6 |
# $Id$ |
|---|
| 7 |
# |
|---|
| 8 |
# All other files in this directory (and subdirectories) are copyrighted |
|---|
| 9 |
# by their respective owner(s). |
|---|
| 10 |
# |
|---|
| 11 |
|
|---|
| 12 |
noinst_LTLIBRARIES = libloader.la |
|---|
| 13 |
|
|---|
| 14 |
# TODO: real check for vsscanf() and <sys/mmap.h> |
|---|
| 15 |
AM_CPPFLAGS = -D__WINE__ -DHAVE_SYS_MMAN_H=1 -DHAVE_VSSCANF=1 \ |
|---|
| 16 |
-DWIN32_PATH=\"\" -DTRACE\(...\)=\(void\)0 |
|---|
| 17 |
AM_CFLAGS = -fno-PIC `$(top_builddir)/vlc-config --cflags` -U_FILE_OFFSET_BITS \ |
|---|
| 18 |
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer |
|---|
| 19 |
|
|---|
| 20 |
noinst_HEADERS = com.h driver.h ext.h ldt_keeper.h loader.h registry.h \ |
|---|
| 21 |
win32.h wineacm.h wrapper.h qtx/qtxsdk/components.h \ |
|---|
| 22 |
wine/avifmt.h wine/basetsd.h wine/debugtools.h wine/driver.h \ |
|---|
| 23 |
wine/heap.h wine/mmreg.h wine/module.h wine/msacmdrv.h wine/msacm.h \ |
|---|
| 24 |
wine/pe_image.h wine/poppack.h wine/pshpack1.h wine/pshpack2.h \ |
|---|
| 25 |
wine/vfw.h wine/winbase.h wine/windef.h wine/winerror.h \ |
|---|
| 26 |
wine/winestring.h wine/winnt.h wine/winreg.h wine/winuser.h |
|---|
| 27 |
|
|---|
| 28 |
libloader_la_SOURCES = ldt_keeper.c pe_image.c module.c ext.c win32.c \ |
|---|
| 29 |
driver.c pe_resource.c resource.c registry.c afl.c vfl.c \ |
|---|
| 30 |
wrapper.S stubs.s kludge.c |
|---|
| 31 |
libloader_la_LIBADD = -lpthread |
|---|
| 32 |
|
|---|