mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 19:18:42 +00:00
31 lines
539 B
Makefile
31 lines
539 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = d3d9.dll
|
|
IMPORTLIB = d3d9
|
|
IMPORTS = dxguid uuid wined3d kernel32
|
|
|
|
C_SRCS = \
|
|
cubetexture.c \
|
|
d3d9_main.c \
|
|
device.c \
|
|
directx.c \
|
|
indexbuffer.c \
|
|
pixelshader.c \
|
|
query.c \
|
|
stateblock.c \
|
|
surface.c \
|
|
swapchain.c \
|
|
texture.c \
|
|
vertexbuffer.c \
|
|
vertexdeclaration.c \
|
|
vertexshader.c \
|
|
volume.c \
|
|
volumetexture.c
|
|
|
|
RC_SRCS = version.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|