d3d8: Use GL_EXTCALL to call OpenGL extension glPointParameterfvARB.
[wine] / server / Makefile.in
1 DEFS      = -D__WINESRC__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ..
4 SRCDIR    = @srcdir@
5 VPATH     = @srcdir@
6 MODULE    = none
7
8 C_SRCS = \
9         atom.c \
10         change.c \
11         class.c \
12         clipboard.c \
13         console.c \
14         context_alpha.c \
15         context_i386.c \
16         context_powerpc.c \
17         context_sparc.c \
18         context_x86_64.c \
19         debugger.c \
20         directory.c \
21         event.c \
22         fd.c \
23         file.c \
24         handle.c \
25         hook.c \
26         mailslot.c \
27         main.c \
28         mapping.c \
29         mutex.c \
30         named_pipe.c \
31         object.c \
32         process.c \
33         ptrace.c \
34         queue.c \
35         region.c \
36         registry.c \
37         request.c \
38         semaphore.c \
39         serial.c \
40         signal.c \
41         snapshot.c \
42         sock.c \
43         symlink.c \
44         thread.c \
45         timer.c \
46         token.c \
47         trace.c \
48         unicode.c \
49         user.c \
50         window.c \
51         winstation.c
52
53 PROGRAMS = wineserver
54 MANPAGES = wineserver.man
55
56 all: $(PROGRAMS) $(MANPAGES)
57
58 @MAKE_RULES@
59
60 wineserver: $(OBJS)
61         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) $(LIBS)
62
63 install:: $(PROGRAMS) $(MANPAGES)
64         $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
65         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
66         $(INSTALL_DATA) wineserver.man $(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
67
68 uninstall::
69         $(RM) $(bindir)/wineserver $(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
70
71 ### Dependencies: