2003-12-16 Jody Goldberg <jody@gnome.org> * capplets/file-types/file-types.desktop.in : remove the png so that it can theme. * capplets/desktop-links/Makefile.am : remove .in.in path kludge. * capplets/desktop-links/Accessibility.directory.in : * capplets/desktop-links/Advanced.directory.in : ditto. * capplets/background/Makefile.am : no need to install capplet icon anymore its part of the theme. * capplets/default-applications/Makefile.am : * capplets/font/Makefile.am : * capplets/keybindings/Makefile.am : * capplets/keyboard/Makefile.am : * capplets/mouse/Makefile.am : * capplets/network/Makefile.am : * capplets/sound/Makefile.am : * capplets/theme-switcher/Makefile.am : * capplets/ui-properties/Makefile.am : * capplets/windows/Makefile.am : * capplets/accessibility/at-properties/Makefile.am : * capplets/accessibility/keyboard/Makefile.am : * capplets/background/background.desktop.in : Use the themed icon. * capplets/default-applications/default-applications.desktop.in : * capplets/font/font-properties.desktop.in : * capplets/keybindings/keybinding.desktop.in : * capplets/keyboard/keyboard.desktop.in : * capplets/mouse/gnome-settings-mouse.desktop.in : * capplets/network/gnome-network-preferences.desktop.in : * capplets/sound/gnome-settings-sound.desktop.in : * capplets/theme-switcher/gtk-theme-selector.desktop.in : * capplets/ui-properties/gnome-ui-properties.desktop.in : * capplets/windows/window-properties.desktop.in : * capplets/accessibility/at-properties/at-properties.desktop.in : * capplets/accessibility/keyboard/accessibility-keyboard.desktop.in :
29 lines
866 B
Makefile
29 lines
866 B
Makefile
bin_PROGRAMS = gnome-font-properties
|
|
|
|
gnome_font_properties_LDADD = $(FONT_CAPPLET_LIBS) $(top_builddir)/capplets/common/libcommon.la
|
|
gnome_font_properties_SOURCES = \
|
|
main.c
|
|
gnome_font_properties_LDFLAGS = -export-dynamic
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
pixmapdir = $(GNOMECC_PIXMAPS_DIR)
|
|
pixmap_DATA = \
|
|
subpixel-rgb.png \
|
|
subpixel-bgr.png \
|
|
subpixel-vrgb.png \
|
|
subpixel-vbgr.png
|
|
|
|
desktopdir = $(GNOMECC_DESKTOP_DIR)
|
|
Desktop_in_files = font-properties.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
gladedir = $(GNOMECC_GLADE_DIR)
|
|
glade_DATA = font-properties.glade
|
|
|
|
INCLUDES = $(FONT_CAPPLET_CFLAGS) \
|
|
$(GNOMECC_CAPPLETS_CFLAGS) \
|
|
-DGLADEDIR=\""$(gladedir)"\" \
|
|
-DPIXMAPDIR=\""$(pixmapdir)"\"
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
|
|
EXTRA_DIST = $(Desktop_in_files) $(glade_DATA) $(pixmap_DATA)
|