projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added sprintfW and vsprintfW.
[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
console.c \
13
context_i386.c \
14
context_powerpc.c \
15
context_sparc.c \
16
debugger.c \
17
device.c \
18
event.c \
19
fd.c \
20
file.c \
21
handle.c \
22
hook.c \
23
main.c \
24
mapping.c \
25
mutex.c \
26
named_pipe.c \
27
object.c \
28
pipe.c \
29
process.c \
30
ptrace.c \
31
queue.c \
32
registry.c \
33
request.c \
34
semaphore.c \
35
serial.c \
36
smb.c \
37
snapshot.c \
38
sock.c \
39
thread.c \
40
timer.c \
41
trace.c \
42
unicode.c \
43
user.c \
44
window.c
45
46
PROGRAMS = wineserver
47
48
all: $(PROGRAMS)
49
50
@MAKE_RULES@
51
52
wineserver: $(OBJS)
53
$(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LIBS) $(LDFLAGS)
54
55
install:: $(PROGRAMS)
56
$(MKINSTALLDIRS) $(bindir)
57
$(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
58
59
uninstall::
60
$(RM) $(bindir)/wineserver
61
62
### Dependencies: