Fixed a number of bugs in the handling of window parent and owner and
[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_powerpc.c \
15         context_sparc.c \
16         debugger.c \
17         device.c \
18         event.c \
19         file.c \
20         handle.c \
21         main.c \
22         mapping.c \
23         mutex.c \
24         named_pipe.c \
25         object.c \
26         pipe.c \
27         process.c \
28         ptrace.c \
29         queue.c \
30         registry.c \
31         request.c \
32         select.c \
33         semaphore.c \
34         serial.c \
35         smb.c \
36         snapshot.c \
37         sock.c \
38         thread.c \
39         timer.c \
40         trace.c \
41         unicode.c \
42         user.c \
43         window.c
44
45 PROGRAMS = wineserver
46
47 all: $(PROGRAMS)
48
49 @MAKE_RULES@
50
51 wineserver: $(OBJS)
52         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBS) $(LDFLAGS)
53
54 install:: $(PROGRAMS)
55         $(MKINSTALLDIRS) $(bindir)
56         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
57
58 uninstall::
59         $(RM) $(bindir)/wineserver
60
61 ### Dependencies: