cabinet: Improve initialization of some arrays.
[wine/wine64.git] / server / Makefile.in
blob50d35300b5f8586cb14c5bd88ce27675dbe0c25e
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 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
55 PROGRAMS = wineserver
56 MANPAGES = wineserver.man
58 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
60 all: $(PROGRAMS) $(MANPAGES)
62 @MAKE_RULES@
64 wineserver: $(OBJS)
65 $(CC) -o $@ $(OBJS) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS) $(LIBS)
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)
71 uninstall::
72 $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
74 @DEPENDENCIES@ # everything below this line is overwritten by make depend