wined3d: Allow SetCursorProperties on existing cursor.
[wine/multimedia.git] / server / Makefile.in
blobbfd5c31992606e429b16160ceefbf88df167c722
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 mach.c \
28 mailslot.c \
29 main.c \
30 mapping.c \
31 mutex.c \
32 named_pipe.c \
33 object.c \
34 process.c \
35 procfs.c \
36 ptrace.c \
37 queue.c \
38 region.c \
39 registry.c \
40 request.c \
41 semaphore.c \
42 serial.c \
43 signal.c \
44 snapshot.c \
45 sock.c \
46 symlink.c \
47 thread.c \
48 timer.c \
49 token.c \
50 trace.c \
51 unicode.c \
52 user.c \
53 window.c \
54 winstation.c
56 PROGRAMS = wineserver
57 MANPAGES = wineserver.man
59 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
61 all: $(PROGRAMS) $(MANPAGES)
63 @MAKE_RULES@
65 wineserver: $(OBJS)
66 $(CC) -o $@ $(OBJS) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS) $(LIBS)
68 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
69 $(INSTALL_PROGRAM) wineserver $(DESTDIR)$(bindir)/wineserver
70 $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
72 uninstall::
73 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
75 @DEPENDENCIES@ # everything below this line is overwritten by make depend