Export the temp buffer functionality in the debug functions interface
[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         context_x86_64.c \
19         debugger.c \
20         event.c \
21         fd.c \
22         file.c \
23         handle.c \
24         hook.c \
25         mailslot.c \
26         main.c \
27         mapping.c \
28         mutex.c \
29         named_pipe.c \
30         object.c \
31         process.c \
32         ptrace.c \
33         queue.c \
34         region.c \
35         registry.c \
36         request.c \
37         semaphore.c \
38         serial.c \
39         signal.c \
40         snapshot.c \
41         sock.c \
42         thread.c \
43         timer.c \
44         token.c \
45         trace.c \
46         unicode.c \
47         user.c \
48         window.c \
49         winstation.c
50
51 PROGRAMS = wineserver
52
53 all: $(PROGRAMS)
54
55 @MAKE_RULES@
56
57 wineserver: $(OBJS)
58         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) $(LIBS)
59
60 install:: $(PROGRAMS)
61         $(MKINSTALLDIRS) $(bindir)
62         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
63
64 uninstall::
65         $(RM) $(bindir)/wineserver
66
67 ### Dependencies: