~ubuntu-branches/ubuntu/wily/gnome-software/wily-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2015-07-22 00:03:04 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150722000304-ctnkwytku720qft7
Tags: 3.16.4-1
* New upstream release.
* Update Build-Depends as per configure.ac:
  - Add appstream-util.
  - Add libpolkit-gobject-1-dev.
  - Bump libappstream-glib-dev to (>= 0.3.4).
  - Bump libgtk-3-dev to (>= 3.16).
* Drop hard-coded dependency on libappstream-glib7 now that the library
  provides a symbols file.
* Use dh_install's exclude (-X) functionality to not install the .a and .la
  files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        $(SOUP_CFLAGS)                                  \
9
9
        $(PACKAGEKIT_CFLAGS)                            \
10
10
        $(GNOME_DESKTOP_CFLAGS)                         \
 
11
        $(POLKIT_CFLAGS)                                \
11
12
        -DG_LOG_DOMAIN=\"Gs\"                           \
12
13
        -DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE  \
13
14
        -DGS_MODULESETDIR=\"$(datadir)/gnome-software/modulesets.d\" \
37
38
        gs-first-run-dialog.ui                          \
38
39
        gs-history-dialog.ui                            \
39
40
        gs-shell-category.ui                            \
 
41
        gs-shell-extras.ui                              \
40
42
        gs-shell-details.ui                             \
41
43
        gs-shell-installed.ui                           \
42
44
        gs-shell-overview.ui                            \
67
69
        gnome-software-cmd
68
70
 
69
71
gnome_software_cmd_SOURCES =                            \
 
72
        gs-cleanup.h                                    \
70
73
        gs-app.c                                        \
71
74
        gs-cmd.c                                        \
72
75
        gs-utils.c                                      \
88
91
        gnome-software
89
92
 
90
93
gnome_software_SOURCES =                                \
 
94
        $(packagekit_built_sources)                     \
 
95
        $(packagekit_modify2_built_sources)             \
 
96
        gs-cleanup.h                                    \
91
97
        gs-resources.c                                  \
92
98
        gs-resources.h                                  \
93
99
        gs-dbus-helper.c                                \
120
126
        gs-history-dialog.h                             \
121
127
        gs-box.h                                        \
122
128
        gs-box.c                                        \
 
129
        gs-language.c                                   \
 
130
        gs-language.h                                   \
 
131
        gs-page.c                                       \
 
132
        gs-page.h                                       \
123
133
        gs-plugin.c                                     \
124
134
        gs-plugin.h                                     \
125
135
        gs-profile.c                                    \
134
144
        gs-shell-details.h                              \
135
145
        gs-shell-category.c                             \
136
146
        gs-shell-category.h                             \
 
147
        gs-shell-extras.c                               \
 
148
        gs-shell-extras.h                               \
137
149
        gs-shell-installed.c                            \
138
150
        gs-shell-installed.h                            \
139
151
        gs-shell-overview.c                             \
150
162
        gs-update-list.h                                \
151
163
        gs-update-monitor.c                             \
152
164
        gs-update-monitor.h                             \
 
165
        gs-vendor.c                                     \
 
166
        gs-vendor.h                                     \
153
167
        gs-proxy-settings.c                             \
154
168
        gs-proxy-settings.h                             \
155
169
        gs-offline-updates.c                            \
175
189
        $(SOUP_LIBS)                                    \
176
190
        $(PACKAGEKIT_LIBS)                              \
177
191
        $(GNOME_DESKTOP_LIBS)                           \
 
192
        $(POLKIT_LIBS)                                  \
178
193
        -lm
179
194
 
180
195
gnome_software_CFLAGS =                                 \
181
196
        -DLIBEXECDIR=\"$(libexecdir)\"                  \
182
197
        $(WARN_CFLAGS)
183
198
 
 
199
packagekit_built_sources = gs-packagekit-generated.c gs-packagekit-generated.h
 
200
$(packagekit_built_sources): Makefile.am org.freedesktop.PackageKit.xml
 
201
        $(AM_V_GEN) gdbus-codegen                               \
 
202
                --interface-prefix org.freedesktop.             \
 
203
                --c-namespace Gs                                \
 
204
                --generate-c-code gs-packagekit-generated       \
 
205
                $(srcdir)/org.freedesktop.PackageKit.xml
 
206
 
 
207
packagekit_modify2_built_sources = gs-packagekit-modify2-generated.c gs-packagekit-modify2-generated.h
 
208
$(packagekit_modify2_built_sources): Makefile.am org.freedesktop.PackageKit.Modify2.xml
 
209
        $(AM_V_GEN) gdbus-codegen                                       \
 
210
                --interface-prefix org.freedesktop.                     \
 
211
                --c-namespace Gs                                        \
 
212
                --generate-c-code gs-packagekit-modify2-generated       \
 
213
                $(srcdir)/org.freedesktop.PackageKit.Modify2.xml
 
214
 
184
215
gs-shell-search-provider-generated.h gs-shell-search-provider-generated.c: Makefile.am $(srcdir)/shell-search-provider-dbus-interfaces.xml
185
216
        $(AM_V_GEN) gdbus-codegen \
186
217
                --interface-prefix org.gnome. \
195
226
        $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --target=$@ --generate-header --c-name gs $(srcdir)/gnome-software.gresource.xml
196
227
 
197
228
BUILT_SOURCES =                                         \
 
229
        $(packagekit_built_sources)                     \
 
230
        $(packagekit_modify2_built_sources)             \
198
231
        gs-shell-search-provider-generated.c            \
199
232
        gs-shell-search-provider-generated.h            \
200
233
        gs-resources.c                                  \
232
265
EXTRA_DIST =                                            \
233
266
        shell-search-provider-dbus-interfaces.xml       \
234
267
        org.freedesktop.PackageKit.xml                  \
 
268
        org.freedesktop.PackageKit.Modify2.xml          \
235
269
        gnome-software.gresource.xml                    \
236
270
        gnome-software.xml                              \
237
271
        gtk-style.css                                   \