summaryrefslogtreecommitdiff
path: root/gdk/Makefile.am
blob: 83a2d34343ca36f72887a748f3f44eecff0c46c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
## Process this file with automake to produce Makefile.in

gdkincludedir = $(includedir)/gdk

lib_LTLIBRARIES = libgdk.la
DEFS += -DG_LOG_DOMAIN=\"Gdk\"

libgdk_la_SOURCES = \
	gdk.c		\
	gdkcc.c		\
	gdkcolor.c	\
	gdkcursor.c	\
	gdkdnd.c	\
	gdkdraw.c	\
	gdkdrawable.c	\
	gdkfont.c	\
	gdkgc.c		\
	gdkglobals.c	\
	gdkimage.c	\
	gdkinput.c	\
	gdkinput.h	\
	gdkinputnone.h  \
	gdkinputcommon.h\
	gdkinputgxi.h	\
	gdkinputxfree.h	\
	gdkpixmap.c	\
	gdkproperty.c	\
	gdkps.c	\
	gdkrgb.c	\
	gdkrectangle.c	\
	gdkregion.c	\
	gdkselection.c	\
	gdkthreads.c    \
	gdkvisual.c	\
	gdkwindow.c	\
	gdkxid.c 	\
	MwmUtil.h       \
	gxid_lib.h	\
	gxid_proto.h	\
        gxid_lib.c
## this last one is ifdef'd out unless XINPUT_GXI is defined
## It's easier than trying to get automake to handle compiling
## it conditionally

gdkinclude_HEADERS = \
	gdk.h		\
	gdkcursors.h	\
	gdkrgb.h	\
 	gdki18n.h	\
	gdkkeysyms.h	\
	gdkprivate.h	\
	gdkps.h	\
	gdktypes.h	\
	gdkx.h

libgdk_la_LDFLAGS = \
	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) \
         @x_ldflags@ @x_libs@

INCLUDES = -I$(top_srcdir) @GLIB_CFLAGS@ @x_cflags@ 

EXTRA_PROGRAMS = gxid

bin_PROGRAMS = @xinput_progs@

gxid_SOURCES = gxid.c

gxid_LDADD = \
	@x_ldflags@	\
	@x_libs@	\
	-lm

BUILT_SOURCES = gdkcursors.h gdkkeysyms.h

EXTRA_DIST = makecursors.awk makekeysyms.awk PolyReg.c Region.c region.h poly.h

gdkcursors.h:
	awk -f $(srcdir)/makecursors.awk @x_includes@/X11/cursorfont.h > $@

gdkkeysyms.h:
	awk -f $(srcdir)/makekeysyms.awk @x_includes@/X11/keysymdef.h > $@

.PHONY: files

files:
	@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
	  echo $$p; \
	done