Fixes to FD_CLOSE handling.
[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         smb.c \
35         snapshot.c \
36         sock.c \
37         thread.c \
38         timer.c \
39         trace.c \
40         unicode.c \
41         user.c \
42         window.c
43
44 PROGRAMS = wineserver
45
46 all: $(PROGRAMS)
47
48 @MAKE_RULES@
49
50 wineserver: $(OBJS)
51         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBUNICODE) $(LIBS) $(LDFLAGS)
52
53 install:: $(PROGRAMS)
54         [ -d $(bindir) ] || $(MKDIR) $(bindir)
55         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
56
57 uninstall::
58         $(RM) $(bindir)/wineserver
59
60 ### Dependencies: