localui/tests: Add tests for AddPortUI.
[wine/wine64.git] / server / Makefile.in
blob7648281f73f3936c21c0b746742d68538b6713e1
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
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_LDFLAGS) $(LIBPORT) $(LDFLAGS) $(LIBS)
70 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
71 $(INSTALL_PROGRAM) wineserver $(DESTDIR)$(bindir)/wineserver
72 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
74 uninstall::
75 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
77 @DEPENDENCIES@ # everything below this line is overwritten by make depend