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