projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added a few missing debug event definitions.
[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
device.c \
12
event.c \
13
file.c \
14
handle.c \
15
mapping.c \
16
mutex.c \
17
object.c \
18
pipe.c \
19
process.c \
20
request.c \
21
snapshot.c \
22
select.c \
23
semaphore.c \
24
socket.c \
25
thread.c \
26
trace.c
27
28
EXTRA_SRCS = main.c
29
MAIN_OBJS = main.o
30
31
PROGRAMS = wineserver
32
33
all: $(MODULE).o $(PROGRAMS)
34
35
@MAKE_RULES@
36
37
wineserver: $(OBJS) $(MAIN_OBJS)
38
$(CC) -o $(PROGRAMS) $(OBJS) $(MAIN_OBJS) $(LIBS)
39
40
### Dependencies: