gtk/gdk/Makefile.am

92 lines
1.8 KiB
Makefile
Raw Normal View History

1997-11-24 22:37:52 +00:00
## Process this file with automake to produce Makefile.in
gdkincludedir = $(includedir)/gdk
lib_LTLIBRARIES = libgdk.la
INCLUDES = \
-DG_LOG_DOMAIN=\"Gdk\" \
-I$(top_srcdir) \
@GTK_DEBUG_FLAGS@ \
@GTK_XIM_FLAGS@ \
@GTK_LOCALE_FLAGS@ \
@GTK_THREAD_FLAGS@ \
@GLIB_CFLAGS@ \
@x_cflags@
1997-11-24 22:37:52 +00:00
libgdk_la_SOURCES = \
1997-11-24 22:37:52 +00:00
gdk.c \
gdkcc.c \
1997-11-24 22:37:52 +00:00
gdkcolor.c \
gdkcursor.c \
gdkdnd.c \
1997-11-24 22:37:52 +00:00
gdkdraw.c \
gdkfont.c \
gdkgc.c \
gdkglobals.c \
gdkimage.c \
gdkinput.c \
gdkinput.h \
gdkinputnone.h \
gdkinputcommon.h\
gdkinputgxi.h \
gdkinputxfree.h \
1997-11-24 22:37:52 +00:00
gdkpixmap.c \
gdkproperty.c \
1998-07-15 21:15:33 +00:00
gdkrgb.c \
1997-11-24 22:37:52 +00:00
gdkrectangle.c \
gdkregion.c \
1997-11-24 22:37:52 +00:00
gdkselection.c \
gdkthreads.c \
1997-11-24 22:37:52 +00:00
gdkvisual.c \
gdkwindow.c \
gdkxid.c \
MwmUtil.h \
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 \
1998-07-15 21:15:33 +00:00
gdkrgb.h \
gdki18n.h \
1997-11-24 22:37:52 +00:00
gdkkeysyms.h \
gdkprivate.h \
gdktypes.h \
gdkx.h
libgdk_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) \
@x_ldflags@ @x_libs@
1997-11-24 22:37:52 +00:00
EXTRA_PROGRAMS = gxid
bin_PROGRAMS = @xinput_progs@
gxid_SOURCES = gxid.c
gxid_LDADD = \
@x_ldflags@ \
@x_libs@ \
1997-11-24 22:37:52 +00:00
-lm
X-derived-headers:
sed -e 's/^#define[ ]*XC\([^ ]*\)[ ]*\([^ ]*\)[ ]*.*$$/GDK\1 = \2,/' \
-e 'tb' -e 'd' -e ':b' \
-e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
< @x_includes@/X11/cursorfont.h > gdkcursors.h ; \
sed -e 's/^#define[ ]*XK\([^ ]*\)[ ]*\([^ ]*\)[ ]*.*$$/#define GDK\1 \2/' \
-e 'tb' -e 'd' -e ':b' -e 's/ 0X/ 0x/' \
< @x_includes@/X11/keysymdef.h > gdkkeysyms.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