Move the data around when the ring buffer is resized so that the empty
[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_i386.c \
16         context_powerpc.c \
17         context_sparc.c \
18         debugger.c \
19         device.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         registry.c \
34         request.c \
35         semaphore.c \
36         serial.c \
37         signal.c \
38         smb.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: