mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
194e09baec
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
54 lines
810 B
Makefile
54 lines
810 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
|
|
|
|
UNIX_LIBS = $(LDEXECFLAGS) $(RT_LIBS) $(INOTIFY_LIBS) $(PROCSTAT_LIBS)
|
|
|
|
unicode_EXTRADEFS = -DNLSDIR="\"${nlsdir}\"" -DBIN_TO_NLSDIR=\"`${MAKEDEP} -R ${bindir} ${nlsdir}`\"
|