2005-06-03 Anders Carlsson <andersca@imendio.com> * Makefile.am: * clipboard-manager.c: * clipboard-manager.h: * list.c: * list.h: * xutils.c * xutils.h: Add clipboard manager files. * gnome-settings-daemon.c: (clipboard_manager_terminate_cb), (clipboard_manager_event_filter), (clipboard_manager_watch_cb), (finalize), (gnome_settings_daemon_new): Use clipboard manager for persistent clipboard storage.
116 lines
3.3 KiB
Makefile
116 lines
3.3 KiB
Makefile
SUBDIRS = xrdb actions
|
|
|
|
INCLUDES=$(LIBXKLAVIER_CFLAGS) $(GNOME_SETTINGS_DAEMON_CFLAGS) -I$(top_srcdir)/libbackground -I$(top_srcdir) \
|
|
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
|
|
-DESD_SERVER="\"$(ESD_SERVER)\"" \
|
|
-DDATADIR="\"$(datadir)\"" \
|
|
-DPIXMAPSDIR="\"$(GNOMECC_PIXMAPS_DIR)\"" \
|
|
$(FB_CFLAGS)
|
|
|
|
libexec_PROGRAMS=gnome-settings-daemon
|
|
|
|
gnome_settings_daemon_SOURCES = \
|
|
factory.c \
|
|
eggaccelerators.h \
|
|
eggaccelerators.c \
|
|
gnome-settings-daemon.h \
|
|
gnome-settings-daemon.c \
|
|
gnome-settings-font.h \
|
|
gnome-settings-font.c \
|
|
gnome-settings-mouse.h \
|
|
gnome-settings-mouse.c \
|
|
gnome-settings-multimedia-keys.h \
|
|
gnome-settings-multimedia-keys.c \
|
|
gnome-settings-keyboard-xkb.h \
|
|
gnome-settings-keyboard-xkb.c \
|
|
gnome-settings-keyboard.h \
|
|
gnome-settings-keyboard.c \
|
|
gnome-settings-background.h \
|
|
gnome-settings-background.c \
|
|
gnome-settings-xsettings.c \
|
|
gnome-settings-xsettings.h \
|
|
gnome-settings-locate-pointer.c \
|
|
gnome-settings-locate-pointer.h \
|
|
gnome-settings-sound.c \
|
|
gnome-settings-sound.h \
|
|
gnome-settings-accessibility-keyboard.h \
|
|
gnome-settings-accessibility-keyboard.c \
|
|
gnome-settings-screensaver.h \
|
|
gnome-settings-screensaver.c \
|
|
gnome-settings-default-editor.c \
|
|
gnome-settings-default-editor.h \
|
|
gnome-settings-gtk1theme.c \
|
|
gnome-settings-gtk1theme.h \
|
|
gnome-settings-xrdb.c \
|
|
gnome-settings-xrdb.h \
|
|
xsettings-common.c \
|
|
xsettings-manager.c \
|
|
xsettings-common.h \
|
|
xsettings-manager.h \
|
|
gnome-settings-keybindings.c \
|
|
gnome-settings-keybindings.h \
|
|
gnome-settings-typing-break.c \
|
|
gnome-settings-typing-break.h \
|
|
reaper.c \
|
|
reaper.h \
|
|
gnome-settings-xmodmap.c \
|
|
gnome-settings-xmodmap.h \
|
|
list.c \
|
|
list.h \
|
|
xutils.c \
|
|
xutils.h \
|
|
clipboard-manager.c \
|
|
clipboard-manager.h \
|
|
$(CORBA_GENERATED)
|
|
|
|
# $(AccessX_files)
|
|
|
|
gnome_settings_daemon_LDADD = \
|
|
$(LIBXKLAVIER_LIBS) \
|
|
$(top_builddir)/libbackground/libbackground.la \
|
|
$(top_builddir)/libsounds/libsounds.a \
|
|
$(top_builddir)/libgswitchit/libgswitchit.a \
|
|
$(top_builddir)/libwindow-settings/libgnome-window-settings.la \
|
|
$(top_builddir)/gnome-settings-daemon/actions/libacme.la \
|
|
$(GNOME_SETTINGS_DAEMON_LIBS) \
|
|
$(XF86MISC_LIBS)
|
|
|
|
#AccessX_files = \
|
|
# AccessXcomm.c \
|
|
# extutil.h \
|
|
# AccessXproto.h \
|
|
# AccessXlibint.h
|
|
|
|
CORBA_GENERATED_HEADER_FILES = GNOME_SettingsDaemon.h
|
|
|
|
CORBA_GENERATED = \
|
|
$(CORBA_GENERATED_HEADER_FILES) \
|
|
GNOME_SettingsDaemon-common.c \
|
|
GNOME_SettingsDaemon-stubs.c \
|
|
GNOME_SettingsDaemon-skels.c
|
|
|
|
BUILT_SOURCES=$(CORBA_GENERATED)
|
|
|
|
idl_dir = $(top_srcdir)/idl
|
|
|
|
IDL_FLAGS = -D__GNOME_SettingsDaemon_COMPILATION -I $(idl_dir) -I $(datadir)/idl \
|
|
-I $(LIBBONOBO_IDL_DIR) \
|
|
-I $(BONOBO_ACTIVATION_IDL_DIR)
|
|
|
|
$(CORBA_GENERATED): $(idl_dir)/GNOME_SettingsDaemon.idl $(ORBIT_IDL)
|
|
$(ORBIT_IDL) $(IDL_FLAGS) $(idl_dir)/GNOME_SettingsDaemon.idl
|
|
|
|
Gladedir = $(GNOMECC_GLADE_DIR)
|
|
Glade_DATA = modmap-dialog.glade
|
|
|
|
serverfile = GNOME_SettingsDaemon.server.in
|
|
serverdir = $(libdir)/bonobo/servers
|
|
install-data-hook :
|
|
$(mkinstalldirs) $(DESTDIR)$(serverdir)
|
|
sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $(srcdir)/$(serverfile) > $(DESTDIR)$(serverdir)/$(serverfile:.in=)
|
|
|
|
EXTRA_DIST = $(serverfile) $(Glade_DATA)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(serverdir)/$(serverfile:.in=)
|