projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add more tests for text placement in single and multiline edit
[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
atom.c \
10
change.c \
11
class.c \
12
clipboard.c \
13
console.c \
14
context_alpha.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
mailslot.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
winstation.c
49
50
PROGRAMS = wineserver
51
52
all: $(PROGRAMS)
53
54
@MAKE_RULES@
55
56
wineserver: $(OBJS)
57
$(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) $(LIBS)
58
59
install:: $(PROGRAMS)
60
$(MKINSTALLDIRS) $(bindir)
61
$(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
62
63
uninstall::
64
$(RM) $(bindir)/wineserver
65
66
### Dependencies: