Horizontal scrollbar is hidden when edit control is emptied.
[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         debugger.c \
19         event.c \
20         fd.c \
21         file.c \
22         handle.c \
23         hook.c \
24         main.c \
25         mapping.c \
26         mutex.c \
27         named_pipe.c \
28         object.c \
29         process.c \
30         ptrace.c \
31         queue.c \
32         region.c \
33         registry.c \
34         request.c \
35         semaphore.c \
36         serial.c \
37         signal.c \
38         snapshot.c \
39         sock.c \
40         thread.c \
41         timer.c \
42         token.c \
43         trace.c \
44         unicode.c \
45         user.c \
46         window.c
47
48 PROGRAMS = wineserver
49
50 all: $(PROGRAMS)
51
52 @MAKE_RULES@
53
54 wineserver: $(OBJS)
55         $(CC) -o $(PROGRAMS) $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) $(LIBS)
56
57 install:: $(PROGRAMS)
58         $(MKINSTALLDIRS) $(bindir)
59         $(INSTALL_PROGRAM) wineserver $(bindir)/wineserver
60
61 uninstall::
62         $(RM) $(bindir)/wineserver
63
64 ### Dependencies: