2002-06-04 Seth Nickell <snickell@stanford.edu> * Makefile.am: Remove unused CFLAGS; * gnome-window-properties.c: (wm_widget_add_wm), (setup_appearance_option_menu): Improve handling of option menus, set the default item. * metacity-window-manager.c: (metacity_set_theme), (add_themes_from_dir), (metacity_get_theme_list), (metacity_set_font), (metacity_set_focus_follows_mouse), (metacity_window_manager_class_init): Actually do things when the "set" calls are made, improve intelligence of loading the theme list. Eventually we should probably do validation on the XML files.
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
bin_PROGRAMS = gnome-window-properties
|
|
|
|
gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) \
|
|
-L$(top_builddir)/libwindow-settings/ -lgnome-window-settings
|
|
|
|
gnome_window_properties_SOURCES = \
|
|
gnome-window-properties.c
|
|
|
|
|
|
wms_flags = -export_dynamic -avoid-version
|
|
wmsdir = $(libdir)/window-manager-settings/
|
|
|
|
wms_LTLIBRARIES = \
|
|
libmetacity.la
|
|
|
|
libmetacity_la_SOURCES = \
|
|
metacity-window-manager.c \
|
|
metacity-window-manager.h
|
|
|
|
|
|
libmetacity_la_LDFLAGS = $(wms_flags)
|
|
#libmetacity_la_LIBADD = $(top_builddir)/libwindow-settings/libwindow-settings.la
|
|
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
pixmapdir = $(GNOMECC_PIXMAPS_DIR)
|
|
pixmap_DATA =
|
|
|
|
Gladedir = $(GNOMECC_GLADE_DIR)
|
|
Glade_DATA = gnome-window-properties.glade
|
|
|
|
iconsdir = $(GNOMECC_ICONS_DIR)
|
|
icons_DATA = window-capplet.png
|
|
|
|
desktop_iconsdir = $(datadir)/pixmaps
|
|
desktop_icons_DATA = window-capplet.png
|
|
|
|
desktopdir = $(GNOMECC_DESKTOP_DIR)
|
|
Desktop_in_files = window-properties.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS) \
|
|
-I $(top_builddir)/libwindow-settings \
|
|
-DGNOME_WINDOW_MANAGER_MODULE_PATH=\""$(libdir)/window-manager-settings"\" \
|
|
-DMETACITY_THEME_DIR=\""$(datadir)/metacity/themes"\"
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
|
|
EXTRA_DIST = $(Glade_DATA) $(icons_DATA) $(Desktop_in_files) $(pixmap_DATA)
|
|
|