]> Pileus Git - ~andy/gtk/blob - gdk/x11/Makefile.am
configure.in gdk/Makefile.am gdk/x11/Makefile.am Small fixes, thanks to
[~andy/gtk] / gdk / x11 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 INCLUDES = @STRIP_BEGIN@        \
4         -DG_LOG_DOMAIN=\"Gdk\"  \
5         -I$(top_srcdir)         \
6         -I$(top_srcdir)/gdk     \
7         @GTK_DEBUG_FLAGS@       \
8         @GTK_XIM_FLAGS@         \
9         @GTK_LOCALE_FLAGS@      \
10         @GLIB_CFLAGS@           \
11         @x_cflags@              \
12 @STRIP_END@
13
14 LDADDS = @STRIP_BEGIN@  \
15         @x_ldflags@     \
16         @x_libs@        \
17         @GLIB_LIBS@     \
18         -lm             \
19 @STRIP_END@
20
21 noinst_LTLIBRARIES = libgdk-x11.la
22
23 if XINPUT_GXI
24 xinput_sources =           \
25         gdkinput-x11.c     \
26         gdkinput-gxi.c
27 else
28 if XINPUT_XFREE
29 xinput_sources =           \
30         gdkinput-x11.c     \
31         gdkinput-xfree.c
32 else
33 xinput_sources =           \
34         gdkinput-none.c
35 endif
36 endif
37
38 libgdk_x11_la_SOURCES =    \
39         MwmUtil.h          \
40         gdkcc-x11.c        \
41         gdkcolor-x11.c     \
42         gdkcursor-x11.c    \
43         gdkdnd-x11.c       \
44         gdkdrawable-x11.c  \
45         gdkevents-x11.c    \
46         gdkfont-x11.c      \
47         gdkgc-x11.c        \
48         gdkglobals-x11.c   \
49         gdkim-x11.c        \
50         gdkimage-x11.c     \
51         gdkinput.c         \
52         gdkmain-x11.c      \
53         gdkpixmap-x11.c    \
54         gdkproperty-x11.c  \
55         gdkregion-x11.c    \
56         gdkselection-x11.c \
57         gdkvisual-x11.c    \
58         gdkwindow-x11.c    \
59         gdkxid.c           \
60         gxid_lib.c         \
61         gxid_lib.h         \
62         gxid_proto.h       \
63         gdkx.h             \
64         gdkprivate-x11.h   \
65         gdkinputprivate.h  \
66         $(xinput_sources)
67
68 EXTRA_PROGRAMS = gxid
69 bin_PROGRAMS = @xinput_progs@
70
71 gxid_SOURCES = gxid.c
72 gxid_LDADD = $(LDADDS)
73
74