mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
c3116c5e61
to follow the namespace conventions and make it clear that they are drivers and not dlls. Moved the graphics driver configuration to HKLM\Software\Wine\Drivers.
51 lines
754 B
Makefile
51 lines
754 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winex11.drv
|
|
IMPORTS = user32 gdi32 advapi32 kernel32 ntdll
|
|
EXTRAINCL = @X_CFLAGS@
|
|
EXTRALIBS = $(LIBUNICODE) @X_LIBS@ @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
|
|
|
|
C_SRCS = \
|
|
bitblt.c \
|
|
bitmap.c \
|
|
brush.c \
|
|
clipboard.c \
|
|
clipping.c \
|
|
codepage.c \
|
|
dce.c \
|
|
desktop.c \
|
|
dga2.c \
|
|
dib.c \
|
|
dib_convert.c \
|
|
dib_dst_swap.c \
|
|
dib_src_swap.c \
|
|
event.c \
|
|
graphics.c \
|
|
init.c \
|
|
keyboard.c \
|
|
mouse.c \
|
|
opengl.c \
|
|
palette.c \
|
|
pen.c \
|
|
scroll.c \
|
|
settings.c \
|
|
text.c \
|
|
window.c \
|
|
winpos.c \
|
|
wintab.c \
|
|
x11ddraw.c \
|
|
x11drv_main.c \
|
|
xdnd.c \
|
|
xfont.c \
|
|
xim.c \
|
|
xrandr.c \
|
|
xrender.c \
|
|
xvidmode.c
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
### Dependencies:
|