diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1998-11-06 22:05:02 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-11-06 22:05:02 +0000 |
commit | e2a521922085c8010028e227f61bba59ea6b8242 (patch) | |
tree | 2500d6aa6f63aab4b58c17546532ecce8fdcca37 /gdk/Makefile.am | |
parent | 3c0df19a588bd96f328bda975db8eb9fa7f79e81 (diff) | |
download | gtk+-e2a521922085c8010028e227f61bba59ea6b8242.tar.gz |
Merge from themes-2. See the ChangeLog for a somewhat detailed
history of the evolution of the changes involved. Most of this
is actually minor painting tweaks.
Diffstat (limited to 'gdk/Makefile.am')
-rw-r--r-- | gdk/Makefile.am | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdk/Makefile.am b/gdk/Makefile.am index b81e7d9aad..c9046e29ca 100644 --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -67,15 +67,14 @@ gxid_LDADD = \ @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 > $@ +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 |