Tue Apr 9 11:43:08 2002 Jonathan Blandford <jrb@gnome.org> * capplets/accessibility/keyboard/Makefile.am: Change gnome2-* to gnome-* * capplets/default-applications/Makefile.am: ditto * capplets/file-types/Makefile.am: ditto * capplets/font/Makefile.am: ditto * capplets/keyboard/Makefile.am: ditto * capplets/mouse/Makefile.am: ditto * capplets/sound/Makefile.am: ditto * capplets/theme-switcher/Makefile.am: ditto * capplets/ui-properties/Makefile.am: ditto * control-center/Makefile.am: ditto * gnome-settings-daemon/Makefile.am: ditto * gnome-keybinding-properties.c (setup_dialog): man, was this code silly. Also, themes are case sensitive. (is_metacity_running): Add support for metacity keybindings. This is off by default until I write code to actually detect metacity. Tue Apr 9 11:58:10 2002 Jonathan Blandford <jrb@gnome.org> * Makefile.am: Add commented out disk support until I finish the code.
29 lines
845 B
Makefile
29 lines
845 B
Makefile
bin_PROGRAMS = gnome-keyboard-properties
|
|
|
|
gnome_keyboard_properties_SOURCES = gnome-keyboard-properties.c
|
|
gnome_keyboard_properties_LDADD = \
|
|
../accessibility/keyboard/libaccessibility-keyboard.a \
|
|
$(GNOMECC_CAPPLETS_LIBS)
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
Gladedir = $(GNOMECC_GLADE_DIR)
|
|
Glade_DATA = gnome-keyboard-properties.glade
|
|
|
|
iconsdir = $(GNOMECC_PIXMAPS_DIR)
|
|
icons_DATA = keyboard-capplet.png \
|
|
keyboard-repeat.png \
|
|
keyboard-cursor.png \
|
|
keyboard-volume.png \
|
|
keyboard-bell.png
|
|
|
|
pixmapsdir = $(datadir)/pixmaps
|
|
pixmaps_DATA = keyboard-capplet.png
|
|
|
|
desktopdir = $(GNOMECC_DESKTOP_DIR)
|
|
Desktop_in_files = keyboard.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS)
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
|
|
EXTRA_DIST = $(Glade_DATA) $(icons_DATA) $(Desktop_in_files)
|