]> Pileus Git - ~andy/gtk/blob - gdk/x11/Makefile.am
Add git.mk to generate .gitignore files
[~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-2.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         gdkcolor-x11.c          \
25         gdkcursor-x11.c         \
26         gdkdisplay-x11.c        \
27         gdkdisplay-x11.h        \
28         gdkdnd-x11.c            \
29         gdkdrawable-x11.c       \
30         gdkdrawable-x11.h       \
31         gdkevents-x11.c         \
32         gdkfont-x11.c           \
33         gdkgc-x11.c             \
34         gdkgeometry-x11.c       \
35         gdkglobals-x11.c        \
36         gdkim-x11.c             \
37         gdkimage-x11.c          \
38         gdkinput.c              \
39         gdkkeys-x11.c           \
40         gdkmain-x11.c           \
41         gdkpixmap-x11.c         \
42         gdkpixmap-x11.h         \
43         gdkproperty-x11.c       \
44         gdkscreen-x11.c         \
45         gdkscreen-x11.h         \
46         gdkselection-x11.c      \
47         gdkspawn-x11.c          \
48         gdktestutils-x11.c      \
49         gdkvisual-x11.c         \
50         gdkwindow-x11.c         \
51         gdkwindow-x11.h         \
52         gdkxftdefaults.c        \
53         gdkxid.c                \
54         gdkx.h                  \
55         gdkprivate-x11.h        \
56         gdkinputprivate.h       \
57         xsettings-client.h      \
58         xsettings-client.c      \
59         xsettings-common.h      \
60         xsettings-common.c
61
62 if XINPUT_XFREE
63 libgdk_x11_la_SOURCES += gdkinput-x11.c gdkinput-xfree.c
64 else
65 libgdk_x11_la_SOURCES += gdkinput-none.c
66 endif
67
68
69 libgdkinclude_HEADERS =         \
70         gdkx.h
71
72
73 noinst_PROGRAMS = checksettings
74 checksettings_LDADD = libgdk-x11.la $(GLIB_LIBS) $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la 
75
76 TESTS = checksettings
77
78 # We need to include all these C files here since the conditionals
79 # don't seem to be correctly expanded for the dist files.
80 EXTRA_DIST +=                   \
81         gdkinput-x11.c          \
82         gdkinput-xfree.c        \
83         gdkinput-none.c         \
84         gdksettings.c
85
86 -include $(top_srcdir)/git.mk