]> Pileus Git - ~andy/gtk/blob - gdk/x11/Makefile.am
[broadway] Add initial keyboard event support
[~andy/gtk] / gdk / x11 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/Makefile.decl
3
4 libgdkincludedir = $(includedir)/gtk-3.0/gdk
5
6 INCLUDES =                      \
7         -DG_LOG_DOMAIN=\"Gdk\"  \
8         -DGDK_COMPILATION       \
9         -I$(top_srcdir)         \
10         -I$(top_srcdir)/gdk     \
11         -I$(top_builddir)/gdk   \
12         $(GTK_DEBUG_FLAGS)      \
13         $(GDK_DEP_CFLAGS)
14
15 LDADDS = $(GDK_DEP_LIBS)
16
17 noinst_LTLIBRARIES = libgdk-x11.la
18
19 libgdk_x11_la_SOURCES =         \
20         MwmUtil.h               \
21         gdkapplaunchcontext-x11.c \
22         gdkasync.c              \
23         gdkasync.h              \
24         gdkcursor-x11.c         \
25         gdkdevice-core.h        \
26         gdkdevice-core.c        \
27         gdkdevicemanager-core.h \
28         gdkdevicemanager-core.c \
29         gdkdevicemanager-x11.c  \
30         gdkdisplay-x11.c        \
31         gdkdisplay-x11.h        \
32         gdkdnd-x11.c            \
33         gdkdrawable-x11.c       \
34         gdkdrawable-x11.h       \
35         gdkeventsource.c        \
36         gdkeventsource.h        \
37         gdkeventtranslator.c    \
38         gdkeventtranslator.h    \
39         gdkgeometry-x11.c       \
40         gdkglobals-x11.c        \
41         gdkim-x11.c             \
42         gdkinput.c              \
43         gdkkeys-x11.c           \
44         gdkmain-x11.c           \
45         gdkproperty-x11.c       \
46         gdkscreen-x11.c         \
47         gdkscreen-x11.h         \
48         gdkselection-x11.c      \
49         gdkspawn-x11.c          \
50         gdktestutils-x11.c      \
51         gdkvisual-x11.c         \
52         gdkwindow-x11.c         \
53         gdkwindow-x11.h         \
54         gdkxftdefaults.c        \
55         gdkxid.c                \
56         gdkx.h                  \
57         gdkprivate-x11.h        \
58         xsettings-client.h      \
59         xsettings-client.c      \
60         xsettings-common.h      \
61         xsettings-common.c
62
63 if XINPUT_XFREE
64 libgdk_x11_la_SOURCES +=        \
65         gdkdevicemanager-xi.c   \
66         gdkdevicemanager-xi.h   \
67         gdkdevice-xi.c          \
68         gdkdevice-xi.h
69 if XINPUT_2
70 libgdk_x11_la_SOURCES +=        \
71         gdkdevicemanager-xi2.c  \
72         gdkdevicemanager-xi2.h  \
73         gdkdevice-xi2.c         \
74         gdkdevice-xi2.h
75 endif
76 endif
77
78
79 libgdkinclude_HEADERS =         \
80         gdkx.h
81
82
83 noinst_PROGRAMS = checksettings
84 checksettings_LDADD = libgdk-x11.la $(GLIB_LIBS)
85
86 TESTS = checksettings
87
88 # We need to include all these C files here since the conditionals
89 # don't seem to be correctly expanded for the dist files.
90 EXTRA_DIST +=                   \
91         gdksettings.c
92
93 -include $(top_srcdir)/git.mk