]> Pileus Git - ~andy/gtk/blob - gdk/x11/Makefile.am
Fix another missing static.
[~andy/gtk] / gdk / x11 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 libgdkincludedir = $(includedir)/gtk-2.0/gdk
4
5 INCLUDES = @STRIP_BEGIN@        \
6         -DG_LOG_DOMAIN=\"Gdk\"  \
7         -DINSIDE_GDK_X11        \
8         -I$(top_srcdir)         \
9         -I$(top_srcdir)/gdk     \
10         -I$(top_builddir)/gdk   \
11         @GTK_DEBUG_FLAGS@       \
12         @GDK_DEP_CFLAGS@        \
13 @STRIP_END@
14
15 LDADDS = @STRIP_BEGIN@          \
16         @GDK_DEP_LIBS@          \
17 @STRIP_END@
18
19 noinst_LTLIBRARIES = libgdk-x11.la
20
21 if XINPUT_GXI
22 xinput_sources =           \
23         gdkinput-x11.c     \
24         gdkinput-gxi.c
25 gxid_sources =                  \
26         gxid_lib.c              \
27         gxid_lib.h              \
28         gxid_proto.h
29 else
30 if XINPUT_XFREE
31 xinput_sources =           \
32         gdkinput-x11.c     \
33         gdkinput-xfree.c
34 else
35 xinput_sources =           \
36         gdkinput-none.c
37 endif
38 endif
39
40 libgdk_x11_la_SOURCES =         \
41         MwmUtil.h               \
42         gdkcolor-x11.c          \
43         gdkcursor-x11.c         \
44         gdkdnd-x11.c            \
45         gdkdrawable-x11.c       \
46         gdkdrawable-x11.h       \
47         gdkevents-x11.c         \
48         gdkfont-x11.c           \
49         gdkgc-x11.c             \
50         gdkgeometry-x11.c       \
51         gdkglobals-x11.c        \
52         gdkim-x11.c             \
53         gdkimage-x11.c          \
54         gdkinput.c              \
55         gdkkeys-x11.c           \
56         gdkmain-x11.c           \
57         gdkpango-x11.c          \
58         gdkpixmap-x11.c         \
59         gdkpixmap-x11.h         \
60         gdkproperty-x11.c       \
61         gdkselection-x11.c      \
62         gdkvisual-x11.c         \
63         gdkwindow-x11.c         \
64         gdkwindow-x11.h         \
65         gdkxid.c                \
66         gdkx.h                  \
67         gdkprivate-x11.h        \
68         gdkinputprivate.h       \
69         $(gxid_sources)         \
70         xsettings-client.h      \
71         xsettings-client.c      \
72         xsettings-common.h      \
73         xsettings-common.c      \
74         $(xinput_sources)
75
76 libgdkinclude_HEADERS =         \
77         gdkx.h
78
79 EXTRA_PROGRAMS = gxid
80 bin_PROGRAMS = @xinput_progs@
81
82 gxid_SOURCES = gxid.c
83 gxid_LDADD = $(LDADDS)
84
85 # We need to include all these C files here since the conditionals
86 # don't seem to be correctly expanded for the dist files.
87 EXTRA_DIST =                    \
88         gdkinput-x11.c          \
89         gdkinput-xfree.c        \
90         gdkinput-gxi.c          \
91         gdkinput-none.c