projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Prevent memory leak and superfluous status notifications.
[wine]
/
server
/
Makefile.in
1
DEFS = -D__WINESRC__
2
TOPSRCDIR = @top_srcdir@
3
TOPOBJDIR = ..
4
SRCDIR = @srcdir@
5
VPATH = @srcdir@
6
MODULE = none
7
8
C_SRCS = \
9
async.c \
10
atom.c \
11
change.c \
12
class.c \
13
clipboard.c \
14
console.c \
15
context_i386.c \
16
context_powerpc.c \
17
context_sparc.c \
18
debugger.c \
19
event.c \
20
fd.c \
21
file.c \
22
handle.c \
23
hook.c \
24
main.c \
25
mapping.c \
26
mutex.c \
27
named_pipe.c \
28
object.c \
29
process.c \
30
ptrace.c \
31
queue.c \
32
registry.c \
33
request.c \
34
semaphore.c \
35
serial.c \
36
signal.c \
37
smb.c \
38
snapshot.c \
39
sock.c \
40
thread.c \
41
timer.c \
42
token.c \
43
trace.c \
44
unicode.c \
45
user.c \
46
window.c
47
48
PROGRAMS = wineserver
49
50
all: $(PROGRAMS)
51
52
@MAKE_RULES@
53
54
wineserver: $(OBJS)
55
$(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) $(LIBS)
56
57
install:: $(PROGRAMS)
58
$(MKINSTALLDIRS) $(bindir)
59
$(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
60
61
uninstall::
62
$(RM) $(bindir)/wineserver
63
64
### Dependencies: