~ubuntu-branches/ubuntu/oneiric/gnome-panel/oneiric

« back to all changes in this revision

Viewing changes to gnome-panel/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-30 11:04:49 UTC
  • mfrom: (1.3.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: james.westby@ubuntu.com-20110530110449-ut1tc5t61rpvf9e3
Tags: upstream-3.0.2
ImportĀ upstreamĀ versionĀ 3.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
        -I$(srcdir)                                             \
13
13
        -I$(top_builddir)/gnome-panel                           \
14
14
        -I$(top_builddir)/gnome-panel/libpanel-util             \
 
15
        -DPANELDATADIR=\""$(datadir)/gnome-panel"\"             \
15
16
        -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"  \
16
17
        -DBUILDERDIR=\""$(uidir)"\"                             \
17
18
        -DICONDIR=\""$(datadir)/gnome-panel/pixmaps"\"          \
32
33
        panel-compatibility.c   \
33
34
        panel.c                 \
34
35
        applet.c                \
35
 
        drawer.c                \
36
 
        panel-config-global.c   \
37
36
        panel-util.c            \
38
37
        panel-gconf.c           \
39
38
        panel-properties-dialog.c       \
49
48
        panel-stock-icons.c     \
50
49
        panel-action-button.c   \
51
50
        panel-menu-bar.c        \
 
51
        panel-menu-bar-object.c \
52
52
        panel-menu-button.c     \
53
53
        panel-menu-items.c      \
54
54
        panel-separator.c       \
61
61
        panel-multiscreen.c     \
62
62
        panel-a11y.c            \
63
63
        panel-bindings.c        \
64
 
        panel-profile.c         \
65
64
        panel-force-quit.c      \
66
65
        panel-lockdown.c        \
67
66
        panel-addto.c           \
68
67
        panel-ditem-editor.c    \
 
68
        panel-layout.c          \
69
69
        panel-modules.c         \
 
70
        panel-object-loader.c   \
 
71
        panel-user-menu.c       \
70
72
        panel-applet-info.c
71
73
 
72
74
panel_headers =                 \
79
81
        panel-compatibility.h   \
80
82
        panel.h                 \
81
83
        applet.h                \
82
 
        drawer.h                \
83
84
        panel-util.h            \
84
85
        panel-properties-dialog.h       \
85
 
        panel-config-global.h   \
86
86
        panel-gconf.h           \
87
87
        panel-run-dialog.h      \
88
88
        menu.h                  \
96
96
        panel-stock-icons.h     \
97
97
        panel-action-button.h   \
98
98
        panel-menu-bar.h        \
 
99
        panel-menu-bar-object.h \
99
100
        panel-menu-button.h     \
100
101
        panel-menu-items.h      \
101
102
        panel-separator.h       \
108
109
        panel-multiscreen.h     \
109
110
        panel-a11y.h            \
110
111
        panel-bindings.h        \
111
 
        panel-profile.h         \
112
112
        panel-enums.h           \
 
113
        panel-enums-gsettings.h \
113
114
        panel-force-quit.h      \
114
115
        panel-lockdown.h        \
115
116
        panel-addto.h           \
116
117
        panel-ditem-editor.h    \
117
118
        panel-icon-names.h      \
 
119
        panel-layout.h          \
118
120
        panel-modules.h         \
 
121
        panel-object-loader.h   \
 
122
        panel-schemas.h         \
 
123
        panel-user-menu.h       \
119
124
        panel-applet-info.h
120
125
 
121
126
gnome_panel_SOURCES =                   \
124
129
 
125
130
gnome_panel_CPPFLAGS =                          \
126
131
        $(AM_CPPFLAGS)                          \
 
132
        $(TELEPATHY_GLIB_CFLAGS)                \
127
133
        $(XRANDR_CFLAGS)                        \
128
134
        -DPANEL_MODULES_DIR=\"$(modulesdir)\"   \
129
 
        -DGMENU_I_KNOW_THIS_IS_UNSTABLE
 
135
        -DGMENU_I_KNOW_THIS_IS_UNSTABLE         \
 
136
        -DGNOME_DESKTOP_USE_UNSTABLE_API
130
137
 
131
138
gnome_panel_LDADD =             \
132
139
        $(top_builddir)/gnome-panel/libegg/libegg.la                                    \
133
140
        $(top_builddir)/gnome-panel/libpanel-applet-private/libpanel-applet-private.la  \
134
141
        $(top_builddir)/gnome-panel/libpanel-util/libpanel-util.la                      \
135
142
        $(PANEL_LIBS)                                                                   \
 
143
        $(TELEPATHY_GLIB_LIBS)                                                          \
136
144
        $(XRANDR_LIBS)                                                                  \
137
145
        $(X_LIBS)
138
146
 
176
184
                < $< > $@
177
185
        $(AM_V_at)chmod a+x $@
178
186
 
179
 
panel_enum_headers =                                    \
180
 
        $(top_srcdir)/gnome-panel/panel-enums.h         \
 
187
panel_enum_headers =                                            \
 
188
        $(top_srcdir)/gnome-panel/panel-enums.h                 \
 
189
        $(top_srcdir)/gnome-panel/panel-enums-gsettings.h       \
181
190
        $(top_srcdir)/gnome-panel/panel-types.h
182
191
 
183
192
panel-marshal.h: panel-marshal.list $(GLIB_GENMARSHAL)
221
230
        panel-marshal.c                 \
222
231
        panel-marshal.h
223
232
 
224
 
rcdir = $(datadir)
225
 
rc_DATA = gnome-panelrc
226
 
 
227
233
uidir = $(datadir)/gnome-panel/ui
228
234
ui_DATA =                                       \
229
235
        panel-properties-dialog.ui              \
236
242
 
237
243
@INTLTOOL_DESKTOP_RULE@
238
244
 
239
 
entriesdir       = $(GCONF_SCHEMA_FILE_DIR)
240
 
entries_DATA     = panel-default-setup.entries
241
 
 
242
 
schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
243
 
schemas_in_files =                              \
244
 
        panel-global.schemas.in                 \
245
 
        panel-general.schemas.in                \
246
 
        panel-toplevel.schemas.in               \
247
 
        panel-object.schemas.in
248
 
schemas_DATA     = panel-compatibility.schemas $(schemas_in_files:.schemas.in=.schemas)
249
 
 
250
 
@INTLTOOL_SCHEMAS_RULE@
251
 
 
252
 
if GCONF_SCHEMAS_INSTALL
253
 
install-data-local:
254
 
        if test -z "$(DESTDIR)" ; then \
255
 
                for p in $(schemas_DATA) ; do \
256
 
                        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/gnome-panel/$$p ; \
257
 
                done ; \
258
 
                $(GCONFTOOL) --direct --config-source=$(GCONF_SCHEMA_CONFIG_SOURCE) --load $(srcdir)/panel-default-setup.entries ; \
259
 
                $(GCONFTOOL) --direct --config-source=$(GCONF_SCHEMA_CONFIG_SOURCE) --load $(srcdir)/panel-default-setup.entries /apps/panel ; \
260
 
        fi
261
 
uninstall-local:
262
 
        for p in $(schema_DATA) ; do \
263
 
                GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $(top_builddir)/applets/ngome-panel/$$p ; \
264
 
        done
265
 
endif
266
 
 
267
245
EXTRA_DIST =                                    \
268
246
        $(ui_DATA)                              \
269
247
        nothing.cP                              \
270
248
        nothing.h                               \
271
 
        $(schemas_in_files)                     \
272
 
        panel-compatibility.schemas             \
273
249
        panel-marshal.list                      \
274
 
        gnome-panelrc                           \
275
 
        $(entries_DATA)                         \
276
250
        $(desktop_in_files)                     \
277
251
        gnome-panel-add.in
278
252
 
279
253
CLEANFILES = \
280
254
        $(BUILT_SOURCES) \
281
 
        $(schemas_in_files:.schemas.in=.schemas) \
282
255
        $(sys_DATA) \
283
256
        $(desktop_DATA) \
284
257
        gnome-panel-add