mirror of
https://github.com/reactos/wine.git
synced 2024-12-14 07:08:41 +00:00
42d20f9dca
Moved all ttydrv source files to dlls/ttydrv. Load functions pointer for the USER driver from the graphics driver dll with GetProcAddress.
25 lines
433 B
Makefile
25 lines
433 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__ -DBINDIR="\"$(bindir)\""
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = x11drv
|
|
|
|
C_SRCS = \
|
|
clipboard.c \
|
|
event.c \
|
|
keyboard.c \
|
|
mouse.c \
|
|
wnd.c
|
|
|
|
PROGRAMS = wineclipsrv
|
|
|
|
all: $(MODULE).o $(PROGRAMS)
|
|
|
|
wineclipsrv: wineclipsrv.c
|
|
$(CC) $(ALLCFLAGS) -o wineclipsrv $(SRCDIR)/wineclipsrv.c $(X_LIBS) $(XLIB) $(LIBS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
### Dependencies:
|