mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
a3c5d33f26
configure generates glibconfig.h. Currently it only defines what windowing API GDK uses, and on Unix (where configure scripts are used), it's always X11... Include gdkconfig.h in gdktypes.h. gdkconfig.h is installed in @libdir@/gtk+/include (like glibconfig.h is in @libdir@/glib/include). (This might be debatable?) Add that to gtk-config --cflags. Merge in Win32 changes to gtkfontsel.c
110 lines
2.2 KiB
Makefile
110 lines
2.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
gdkincludedir = $(includedir)/gdk
|
|
|
|
configincludedir = $(pkglibdir)/include
|
|
|
|
lib_LTLIBRARIES = libgdk.la
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-I$(top_srcdir) \
|
|
@GTK_DEBUG_FLAGS@ \
|
|
@GTK_XIM_FLAGS@ \
|
|
@GTK_LOCALE_FLAGS@ \
|
|
@GLIB_CFLAGS@ \
|
|
@x_cflags@
|
|
|
|
libgdk_la_SOURCES = \
|
|
gdk.c \
|
|
gdkcc.c \
|
|
gdkcolor.c \
|
|
gdkcursor.c \
|
|
gdkdnd.c \
|
|
gdkdraw.c \
|
|
gdkevents.c \
|
|
gdkfont.c \
|
|
gdkgc.c \
|
|
gdkglobals.c \
|
|
gdkim.c \
|
|
gdkimage.c \
|
|
gdkinput.c \
|
|
gdkinput.h \
|
|
gdkinputnone.h \
|
|
gdkinputcommon.h\
|
|
gdkinputgxi.h \
|
|
gdkinputxfree.h \
|
|
gdkpixmap.c \
|
|
gdkproperty.c \
|
|
gdkrgb.c \
|
|
gdkrectangle.c \
|
|
gdkregion.c \
|
|
gdkselection.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 \
|
|
gdktypes.h \
|
|
gdkx.h
|
|
|
|
LDADDS = \
|
|
@x_ldflags@ \
|
|
@x_libs@ \
|
|
@GLIB_LIBS@ \
|
|
-lm
|
|
|
|
libgdk_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) \
|
|
@GLIB_DEPLIBS@ \
|
|
@x_ldflags@ \
|
|
@x_libs@ \
|
|
-lm
|
|
|
|
configinclude_DATA = \
|
|
gdkconfig.h
|
|
|
|
BUILT_SOURCES = stamp-gc-h #note: not gdkconfig.h
|
|
gdkconfig.h: stamp-gc-h
|
|
@:
|
|
stamp-gc-h: ../config.status
|
|
cd .. && CONFIG_FILES= CONFIG_HEADERS= CONFIG_OTHER=gdk/gdkconfig.h ./config.status
|
|
echo timestamp > stamp-gc-h
|
|
|
|
EXTRA_PROGRAMS = gxid
|
|
|
|
bin_PROGRAMS = @xinput_progs@
|
|
|
|
gxid_SOURCES = gxid.c
|
|
|
|
gxid_LDADD = $(LDADDS)
|
|
|
|
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
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|