projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Make ioport instruction emulation call winedos handlers.
[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
signal.c \
37
smb.c \
38
snapshot.c \
39
sock.c \
40
thread.c \
41
timer.c \
42
trace.c \
43
unicode.c \
44
user.c \
45
window.c
46
47
PROGRAMS = wineserver
48
49
all: $(PROGRAMS)
50
51
@MAKE_RULES@
52
53
wineserver: $(OBJS)
54
$(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LIBS) $(LDFLAGS)
55
56
install:: $(PROGRAMS)
57
$(MKINSTALLDIRS) $(bindir)
58
$(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
59
60
uninstall::
61
$(RM) $(bindir)/wineserver
62
63
### Dependencies: