Remove Get/SetBeepActive from USER driver and manage it locally inside
[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         async.c \
10         atom.c \
11         change.c \
12         console.c \
13         context_i386.c \
14         context_sparc.c \
15         debugger.c \
16         device.c \
17         event.c \
18         file.c \
19         handle.c \
20         main.c \
21         mapping.c \
22         mutex.c \
23         object.c \
24         pipe.c \
25         process.c \
26         ptrace.c \
27         queue.c \
28         registry.c \
29         request.c \
30         select.c \
31         semaphore.c \
32         serial.c \
33         snapshot.c \
34         sock.c \
35         thread.c \
36         timer.c \
37         trace.c \
38         unicode.c
39
40 PROGRAMS = wineserver
41
42 all: $(PROGRAMS)
43
44 @MAKE_RULES@
45
46 wineserver: $(OBJS)
47         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBUNICODE) $(LIBS) $(LDFLAGS)
48
49 install:: $(PROGRAMS)
50         [ -d $(bindir) ] || $(MKDIR) $(bindir)
51         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
52
53 uninstall::
54         $(RM) $(bindir)/wineserver
55
56 ### Dependencies: