projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Store all object names as Unicode in the server.
[wine]
/
server
/
Makefile.in
1
DEFS = @DLLFLAGS@ -D__WINE__ -D__WINE_SERVER__
2
TOPSRCDIR = @top_srcdir@
3
TOPOBJDIR = ..
4
SRCDIR = @srcdir@
5
VPATH = @srcdir@
6
MODULE = server
7
8
C_SRCS = \
9
change.c \
10
console.c \
11
debugger.c \
12
device.c \
13
event.c \
14
file.c \
15
handle.c \
16
mapping.c \
17
mutex.c \
18
object.c \
19
pipe.c \
20
process.c \
21
ptrace.c \
22
registry.c \
23
request.c \
24
select.c \
25
semaphore.c \
26
snapshot.c \
27
sock.c \
28
socket.c \
29
thread.c \
30
trace.c \
31
unicode.c
32
33
EXTRA_SRCS = main.c
34
MAIN_OBJS = main.o
35
36
PROGRAMS = wineserver
37
38
all: $(MODULE).o $(PROGRAMS)
39
40
@MAKE_RULES@
41
42
wineserver: $(OBJS) $(MAIN_OBJS)
43
$(CC) -o $(PROGRAMS) $(OBJS) $(MAIN_OBJS) $(LIBS)
44
45
### Dependencies: