Get rid of some warnings about unused variables, signed/unsigned
[wine] / server / Makefile.in
1 DEFS      = -D__WINE__ -D__WINE_SERVER__
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         console.c \
12         context_i386.c \
13         context_sparc.c \
14         debugger.c \
15         device.c \
16         event.c \
17         file.c \
18         handle.c \
19         main.c \
20         mapping.c \
21         mutex.c \
22         object.c \
23         pipe.c \
24         process.c \
25         ptrace.c \
26         queue.c \
27         registry.c \
28         request.c \
29         select.c \
30         semaphore.c \
31         serial.c \
32         snapshot.c \
33         sock.c \
34         thread.c \
35         timer.c \
36         trace.c \
37         unicode.c
38
39 PROGRAMS = wineserver
40
41 all: $(PROGRAMS)
42
43 @MAKE_RULES@
44
45 wineserver: $(OBJS)
46         $(CC) -o $(PROGRAMS) $(OBJS) -L$(TOPOBJDIR) -lwine_unicode $(LIBS) $(LDFLAGS)
47
48 install:: $(PROGRAMS)
49         [ -d $(bindir) ] || $(MKDIR) $(bindir)
50         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
51
52 uninstall::
53         $(RM) $(bindir)/wineserver
54
55 ### Dependencies: