push(c) 7dcddf6204ed5518706a76fe66fd836d81e70dd4
[wine/hacks.git] / server / Makefile.in
blob16ff2205b31c810425172ac754adbca2f85d5954
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
63 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
65 all: $(PROGRAMS) $(MANPAGES)
67 @MAKE_RULES@
69 wineserver: $(OBJS)
70 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_LOCAL)
72 wineserver-installed: $(OBJS)
73 $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_INSTALL)
75 install:: wineserver-installed $(MANPAGES) $(INSTALLDIRS)
76 $(INSTALL_PROGRAM) wineserver-installed $(DESTDIR)$(bindir)/wineserver
77 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
79 uninstall::
80 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
82 @DEPENDENCIES@ # everything below this line is overwritten by make depend