wined3d: Get rid of any remaining d3d9 stuff in surface.c and surface_gdi.c.
[wine] / server / Makefile.in
1 DEFS      = -D__WINESRC__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ..
4 SRCDIR    = @srcdir@
5 VPATH     = @srcdir@
6 MODULE    = none
7 EXTRALIBS = @LIBPOLL@
8
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         ptrace.c \
36         queue.c \
37         region.c \
38         registry.c \
39         request.c \
40         semaphore.c \
41         serial.c \
42         signal.c \
43         snapshot.c \
44         sock.c \
45         symlink.c \
46         thread.c \
47         timer.c \
48         token.c \
49         trace.c \
50         unicode.c \
51         user.c \
52         window.c \
53         winstation.c
54
55 PROGRAMS = wineserver
56 MANPAGES = wineserver.man
57
58 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
59
60 all: $(PROGRAMS) $(MANPAGES)
61
62 @MAKE_RULES@
63
64 wineserver: $(OBJS)
65         $(CC) -o $@ $(OBJS) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS) $(LIBS)
66
67 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
68         $(INSTALL_PROGRAM) wineserver $(DESTDIR)$(bindir)/wineserver
69         $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
70
71 uninstall::
72         $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
73
74 @DEPENDENCIES@  # everything below this line is overwritten by make depend