wordpad: Add font size list.
[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         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
57
58 PROGRAMS = wineserver wineserver-installed
59 MANPAGES = wineserver.man
60
61 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
62
63 all: $(PROGRAMS) $(MANPAGES)
64
65 @MAKE_RULES@
66
67 wineserver: $(OBJS)
68         $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_LOCAL)
69
70 wineserver-installed: $(OBJS)
71         $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_INSTALL)
72
73 install:: wineserver-installed $(MANPAGES) $(INSTALLDIRS)
74         $(INSTALL_PROGRAM) wineserver-installed $(DESTDIR)$(bindir)/wineserver
75         $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
76
77 uninstall::
78         $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
79
80 @DEPENDENCIES@  # everything below this line is overwritten by make depend