2004-11-28 James Henstridge <james@jamesh.id.au> * vfs-methods/themus/themus-properties-main.c: use GNOMELOCALEDIR. * vfs-methods/themus/Makefile.am: similar changes to the fontilus ones. * vfs-methods/fontilus/fontilus-context-menu.c: same here. * vfs-methods/fontilus/font-view.c: use GNOMELOCALEDIR rather than FONTILUS_LOCALEDIR in the bindtextdomain() call, to match the rest of gnome-control-center. * vfs-methods/fontilus/Makefile.am: similar schema and desktop file fixes. Don't include the old mime files in the dist. * schemas/Makefile.am: remove .schemas files on clean, when installing schemas, look for them in builddir rather than srcdir. * gnome-settings-daemon/actions/Makefile.am: fix up build rules so that ALSA_CFLAGS isn't defined multiple times (use the newer automake += syntax). * control-center/Makefile.am: distribute $(icon_DATA). * capplets/*/Makefile.am: put the .desktop and .desktop.in files in CLEANFILES. The .desktop.in.in file gets included because it is listed in the configure script. * configure.in: update configure script, and remove macro calls that are not needed by modern versions of Automake. * Makefile.am: remove intltool files on distclean. * autogen.sh: request Automake >= 1.7.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
noinst_LIBRARIES = libaccessibility-keyboard.a
|
|
|
|
libaccessibility_keyboard_a_SOURCES = \
|
|
accessibility-keyboard.c \
|
|
accessibility-keyboard.h
|
|
|
|
# in case we need to forward port the sun accessX extension
|
|
# AccessXcomm.c
|
|
|
|
bin_PROGRAMS = gnome-accessibility-keyboard-properties
|
|
|
|
gnome_accessibility_keyboard_properties_SOURCES = gnome-accessibility-keyboard-properties.c
|
|
gnome_accessibility_keyboard_properties_LDADD = \
|
|
libaccessibility-keyboard.a $(GNOMECC_CAPPLETS_LIBS)
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
pixmapdir = $(GNOMECC_PIXMAPS_DIR)
|
|
pixmap_DATA = \
|
|
accessibility-keyboard-togglekey.png \
|
|
accessibility-keyboard-mousekey.png \
|
|
accessibility-keyboard-slowkey.png \
|
|
accessibility-keyboard-stickykey.png \
|
|
accessibility-keyboard-bouncekey.png
|
|
|
|
Gladedir = $(GNOMECC_GLADE_DIR)
|
|
Glade_DATA = gnome-accessibility-keyboard-properties.glade
|
|
|
|
desktopdir = $(datadir)/applications
|
|
Desktop_in_files = accessibility-keyboard.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS)
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES) $(Desktop_in_files) $(desktop_DATA)
|
|
EXTRA_DIST = $(Glade_DATA) $(pixmap_DATA)
|
|
|