push f8083b729a774ecf57aee5d40827aaebfcf1f912
[wine/hacks.git] / server / Makefile.in
blobc0e32914ac75f4085b7d43723c16beae4defa5aa
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 completion.c \
16 console.c \
17 context_alpha.c \
18 context_i386.c \
19 context_powerpc.c \
20 context_sparc.c \
21 context_x86_64.c \
22 cursoricon.c \
23 debugger.c \
24 device.c \
25 directory.c \
26 event.c \
27 fd.c \
28 file.c \
29 handle.c \
30 hook.c \
31 mach.c \
32 mailslot.c \
33 main.c \
34 mapping.c \
35 mutex.c \
36 named_pipe.c \
37 object.c \
38 process.c \
39 procfs.c \
40 ptrace.c \
41 queue.c \
42 region.c \
43 registry.c \
44 request.c \
45 semaphore.c \
46 serial.c \
47 signal.c \
48 snapshot.c \
49 sock.c \
50 symlink.c \
51 thread.c \
52 timer.c \
53 token.c \
54 trace.c \
55 unicode.c \
56 user.c \
57 window.c \
58 winstation.c
60 PROGRAMS = wineserver wineserver-installed
61 MANPAGES = wineserver.man wineserver.fr.man
63 INSTALLDIRS = \
64 $(DESTDIR)$(bindir) \
65 $(DESTDIR)$(mandir)/man$(prog_manext) \
66 $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)
68 all: $(PROGRAMS) $(MANPAGES)
70 @MAKE_RULES@
72 wineserver: $(OBJS)
73 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_LOCAL)
75 wineserver-installed: $(OBJS)
76 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_INSTALL)
78 install:: wineserver-installed $(MANPAGES) $(INSTALLDIRS)
79 $(INSTALL_PROGRAM) wineserver-installed $(DESTDIR)$(bindir)/wineserver
80 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
81 $(INSTALL_DATA) wineserver.fr.man $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wineserver.$(prog_manext)
83 uninstall::
84 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
85 $(RM) $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wineserver.$(prog_manext)
87 @DEPENDENCIES@ # everything below this line is overwritten by make depend