mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
a74e338517
Thu Mar 26 15:33:50 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkwidget.c: When gtk_widget_draw() is called on a REDRAW_PENDING widget, draw it and remove it from the queue instead of doing nothing. * gtk/Makefile.am gdk/Makefile.am: Switch order of includes directories, to make doubly sure that wrong glibconfig.h isn't used. (See also glib/ChangeLog) * gtk/gtkentry.c (gtk_entry_draw_focus): Don't draw the cursor unless the entry is editable. (From: Stefan Jeske <jeske@braunschweig.netsurf.de>)
83 lines
1.5 KiB
Makefile
83 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
gdkincludedir = $(includedir)/gdk
|
|
|
|
lib_LTLIBRARIES = libgdk.la
|
|
|
|
libgdk_la_SOURCES = \
|
|
gdk.c \
|
|
gdkcc.c \
|
|
gdkcolor.c \
|
|
gdkcursor.c \
|
|
gdkdnd.c \
|
|
gdkdraw.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 \
|
|
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 \
|
|
gdki18n.h \
|
|
gdkkeysyms.h \
|
|
gdkprivate.h \
|
|
gdktypes.h \
|
|
gdkx.h
|
|
|
|
libgdk_la_LDFLAGS = -version-info 1:0:0 \
|
|
@x_ldflags@ @x_libs@
|
|
|
|
INCLUDES = -I$(top_srcdir) -I../glib -I$(top_srcdir)/glib @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
|
|
|
|
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
|
|
|
|
$(DEP_FILES) : $(BUILT_SOURCES)
|