ole32: Remove 'recursive registry key delete' function.
[wine/multimedia.git] / server / Makefile.in
blobbc0a6bd837f0f8b3e27cc583415d667dcef5aee6
1 DEFS = -D__WINESRC__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
6 MODULE = none
7 EXTRALIBS = @LIBPOLL@
9 C_SRCS = \
10 async.c \
11 atom.c \
12 change.c \
13 class.c \
14 clipboard.c \
15 console.c \
16 context_alpha.c \
17 context_i386.c \
18 context_powerpc.c \
19 context_sparc.c \
20 context_x86_64.c \
21 debugger.c \
22 device.c \
23 directory.c \
24 event.c \
25 fd.c \
26 file.c \
27 handle.c \
28 hook.c \
29 mach.c \
30 mailslot.c \
31 main.c \
32 mapping.c \
33 mutex.c \
34 named_pipe.c \
35 object.c \
36 process.c \
37 procfs.c \
38 ptrace.c \
39 queue.c \
40 region.c \
41 registry.c \
42 request.c \
43 semaphore.c \
44 serial.c \
45 signal.c \
46 snapshot.c \
47 sock.c \
48 symlink.c \
49 thread.c \
50 timer.c \
51 token.c \
52 trace.c \
53 unicode.c \
54 user.c \
55 window.c \
56 winstation.c
58 PROGRAMS = wineserver wineserver-installed
59 MANPAGES = wineserver.man
61 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
63 all: $(PROGRAMS) $(MANPAGES)
65 @MAKE_RULES@
67 wineserver: $(OBJS)
68 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_LOCAL)
70 wineserver-installed: $(OBJS)
71 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_INSTALL)
73 install:: wineserver-installed $(MANPAGES) $(INSTALLDIRS)
74 $(INSTALL_PROGRAM) wineserver-installed $(DESTDIR)$(bindir)/wineserver
75 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
77 uninstall::
78 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
80 @DEPENDENCIES@ # everything below this line is overwritten by make depend