projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Spelling/alignment fixes.
[wine]
/
server
/
Makefile.in
1
DEFS = -D__WINE__
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_sparc.c \
15
debugger.c \
16
device.c \
17
event.c \
18
file.c \
19
handle.c \
20
main.c \
21
mapping.c \
22
mutex.c \
23
named_pipe.c \
24
object.c \
25
pipe.c \
26
process.c \
27
ptrace.c \
28
queue.c \
29
registry.c \
30
request.c \
31
select.c \
32
semaphore.c \
33
serial.c \
34
snapshot.c \
35
sock.c \
36
thread.c \
37
timer.c \
38
trace.c \
39
unicode.c \
40
user.c \
41
window.c
42
43
PROGRAMS = wineserver
44
45
all: $(PROGRAMS)
46
47
@MAKE_RULES@
48
49
wineserver: $(OBJS)
50
$(CC) -o $(PROGRAMS) $(OBJS) $(LIBUNICODE) $(LIBS) $(LDFLAGS)
51
52
install:: $(PROGRAMS)
53
[ -d $(bindir) ] || $(MKDIR) $(bindir)
54
$(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
55
56
uninstall::
57
$(RM) $(bindir)/wineserver
58
59
### Dependencies: