msi: Also set the SOURCEDIR property in MSI_InstallPackage.
[wine/wine64.git] / server / Makefile.in
blobf62bd1d0100c5266bc824a73c49078cdf94be954
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 atom.c \
11 change.c \
12 class.c \
13 clipboard.c \
14 console.c \
15 context_alpha.c \
16 context_i386.c \
17 context_powerpc.c \
18 context_sparc.c \
19 context_x86_64.c \
20 debugger.c \
21 directory.c \
22 event.c \
23 fd.c \
24 file.c \
25 handle.c \
26 hook.c \
27 mailslot.c \
28 main.c \
29 mapping.c \
30 mutex.c \
31 named_pipe.c \
32 object.c \
33 process.c \
34 ptrace.c \
35 queue.c \
36 region.c \
37 registry.c \
38 request.c \
39 semaphore.c \
40 serial.c \
41 signal.c \
42 snapshot.c \
43 sock.c \
44 symlink.c \
45 thread.c \
46 timer.c \
47 token.c \
48 trace.c \
49 unicode.c \
50 user.c \
51 window.c \
52 winstation.c
54 PROGRAMS = wineserver
55 MANPAGES = wineserver.man
57 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
59 all: $(PROGRAMS) $(MANPAGES)
61 @MAKE_RULES@
63 wineserver: $(OBJS)
64 $(CC) -o $@ $(OBJS) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS) $(LIBS)
66 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
67 $(INSTALL_PROGRAM) wineserver $(DESTDIR)$(bindir)/wineserver
68 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
70 uninstall::
71 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
73 @DEPENDENCIES@ # everything below this line is overwritten by make depend