blob: 9c24fbea9c1b8a006c9abc8318151aab2000c930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
SUBDIRS = xrdb
INCLUDES=$(LIBXKLAVIER_CFLAGS) $(GNOME_SETTINGS_DAEMON_CFLAGS) -I$(top_srcdir)/libbackground -I$(top_srcdir) \
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
-DESD_SERVER="\"$(ESD_SERVER)\"" \
-DDATADIR="\"$(datadir)\""
libexec_PROGRAMS=gnome-settings-daemon
gnome_settings_daemon_SOURCES = \
factory.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-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 \
$(CORBA_GENERATED)
# $(AccessX_files)
gnome_settings_daemon_LDADD = \
$(LIBXKLAVIER_LIBS) \
$(GNOME_SETTINGS_DAEMON_LIBS) \
$(top_builddir)/libbackground/libbackground.la \
$(top_builddir)/libsounds/libsounds.a \
$(top_builddir)/libgswitchit/libgswitchit.a \
$(top_builddir)/libwindow-settings/libgnome-window-settings.la \
$(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
serverdir = $(libdir)/bonobo/servers
server_in_files = GNOME_SettingsDaemon.server.in
server_DATA = $(server_in_files:.server.in=.server)
$(server_in_files): $(server_in_files).in
sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@
# Do not ship
dist-hook :
-rm -f $(distdir)/GNOME_SettingsDaemon.server.in $(distdir)/GNOME_SettingsDaemon.server
@INTLTOOL_SERVER_RULE@
CLEANFILES = $(BUILT_SOURCES) $(server_in_files)
EXTRA_DIST = $(server_in_files) GNOME_SettingsDaemon.server.in.in
|