mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 05:21:29 +00:00
48c11f1e80
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
54 lines
806 B
Makefile
54 lines
806 B
Makefile
PROGRAMS = wineserver
|
|
|
|
C_SRCS = \
|
|
async.c \
|
|
atom.c \
|
|
change.c \
|
|
class.c \
|
|
clipboard.c \
|
|
completion.c \
|
|
console.c \
|
|
debugger.c \
|
|
device.c \
|
|
directory.c \
|
|
event.c \
|
|
fd.c \
|
|
file.c \
|
|
handle.c \
|
|
hook.c \
|
|
mach.c \
|
|
mailslot.c \
|
|
main.c \
|
|
mapping.c \
|
|
mutex.c \
|
|
named_pipe.c \
|
|
object.c \
|
|
process.c \
|
|
procfs.c \
|
|
ptrace.c \
|
|
queue.c \
|
|
region.c \
|
|
registry.c \
|
|
request.c \
|
|
semaphore.c \
|
|
serial.c \
|
|
signal.c \
|
|
sock.c \
|
|
symlink.c \
|
|
thread.c \
|
|
timer.c \
|
|
token.c \
|
|
trace.c \
|
|
unicode.c \
|
|
user.c \
|
|
window.c \
|
|
winstation.c
|
|
|
|
MANPAGES = \
|
|
wineserver.de.UTF-8.man.in \
|
|
wineserver.fr.UTF-8.man.in \
|
|
wineserver.man.in
|
|
|
|
EXTRALIBS = $(LDEXECFLAGS) $(POLL_LIBS) $(RT_LIBS) $(INOTIFY_LIBS)
|
|
|
|
unicode_EXTRADEFS = -DNLSDIR="\"${nlsdir}\"" -DBIN_TO_NLSDIR=\"`$(MAKEDEP) -R ${bindir} ${nlsdir}`\"
|