1997-11-24 22:37:52 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
gdkincludedir = $(includedir)/gdk
|
|
|
|
|
1998-05-11 08:31:16 +00:00
|
|
|
lib_LTLIBRARIES = libgdk-1.1.la
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-05-11 08:31:16 +00:00
|
|
|
libgdk_1_1_la_SOURCES = \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdk.c \
|
1997-12-17 00:14:36 +00:00
|
|
|
gdkcc.c \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdkcolor.c \
|
|
|
|
gdkcursor.c \
|
1998-02-27 03:55:33 +00:00
|
|
|
gdkdnd.c \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdkdraw.c \
|
|
|
|
gdkfont.c \
|
|
|
|
gdkgc.c \
|
|
|
|
gdkglobals.c \
|
|
|
|
gdkimage.c \
|
|
|
|
gdkinput.c \
|
1997-11-27 04:16:39 +00:00
|
|
|
gdkinput.h \
|
|
|
|
gdkinputnone.h \
|
|
|
|
gdkinputcommon.h\
|
|
|
|
gdkinputgxi.h \
|
|
|
|
gdkinputxfree.h \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdkpixmap.c \
|
|
|
|
gdkproperty.c \
|
|
|
|
gdkrectangle.c \
|
1998-02-28 14:35:55 +00:00
|
|
|
gdkregion.c \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdkselection.c \
|
|
|
|
gdkvisual.c \
|
|
|
|
gdkwindow.c \
|
|
|
|
gdkxid.c \
|
1998-02-27 03:55:33 +00:00
|
|
|
MwmUtil.h \
|
1997-11-27 04:16:39 +00:00
|
|
|
gxid_lib.h \
|
|
|
|
gxid_proto.h \
|
1997-11-24 22:37:52 +00:00
|
|
|
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 \
|
1997-11-27 04:16:39 +00:00
|
|
|
gdki18n.h \
|
1997-11-24 22:37:52 +00:00
|
|
|
gdkkeysyms.h \
|
|
|
|
gdkprivate.h \
|
|
|
|
gdktypes.h \
|
|
|
|
gdkx.h
|
|
|
|
|
1998-05-11 08:31:16 +00:00
|
|
|
libgdk_1_1_la_LDFLAGS = \
|
1998-05-07 04:04:15 +00:00
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
1998-01-12 15:41:36 +00:00
|
|
|
@x_ldflags@ @x_libs@
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-03-26 20:57:29 +00:00
|
|
|
INCLUDES = -I$(top_srcdir) -I../glib -I$(top_srcdir)/glib @x_cflags@
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
EXTRA_PROGRAMS = gxid
|
|
|
|
|
|
|
|
bin_PROGRAMS = @xinput_progs@
|
|
|
|
|
|
|
|
gxid_SOURCES = gxid.c
|
|
|
|
|
|
|
|
gxid_LDADD = \
|
1998-01-12 15:41:36 +00:00
|
|
|
@x_ldflags@ \
|
|
|
|
@x_libs@ \
|
1997-11-24 22:37:52 +00:00
|
|
|
-lm
|
|
|
|
|
|
|
|
BUILT_SOURCES = gdkcursors.h gdkkeysyms.h
|
|
|
|
|
1997-12-13 00:58:24 +00:00
|
|
|
EXTRA_DIST = makecursors.awk makekeysyms.awk
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
gdkcursors.h:
|
1997-12-13 00:58:24 +00:00
|
|
|
awk -f $(srcdir)/makecursors.awk @x_includes@/X11/cursorfont.h > $@
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
gdkkeysyms.h:
|
1997-12-13 00:58:24 +00:00
|
|
|
awk -f $(srcdir)/makekeysyms.awk @x_includes@/X11/keysymdef.h > $@
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|