~ubuntu-branches/ubuntu/utopic/anjuta/utopic-proposed

« back to all changes in this revision

Viewing changes to plugins/git/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Jackson Doak
  • Date: 2014-07-12 15:17:39 UTC
  • mfrom: (1.4.14)
  • Revision ID: package-import@ubuntu.com-20140712151739-p9xy0ntlgbpm2nxq
Tags: 2:3.12.0-1
* Team upload.

[ Jackson Doak ]
* New upstream release
* Drop 03_valac_0.22.patch, fixed upstream\
* debian/control:
  - Bump b-dep version on libgtk-3-dev (>= 3.6.0), libglib2.0-dev (>= 2.34.0)
  - Bump stardards-version to 3.9.5. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = images
 
1
SUBDIRS = images tests
2
2
 
3
3
# Plugin glade file
4
4
git_gladedir = $(anjuta_glade_dir)
5
 
git_glade_DATA = anjuta-git.ui
 
5
dist_git_glade_DATA = anjuta-git.ui
 
6
 
 
7
# Plugin UI file
 
8
git_uidir = $(anjuta_ui_dir)
 
9
dist_git_ui_DATA = anjuta-git.xml
6
10
 
7
11
# Plugin description file
8
12
plugin_in_files = git.plugin.in
9
13
%.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
10
14
 
11
15
git_plugindir = $(anjuta_plugin_dir)
12
 
git_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin) 
 
16
dist_git_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
13
17
 
14
18
# NOTE :
15
19
# The naming convention is very intentional
203
207
        git-stash-changes-pane.h \
204
208
        git-apply-stash-pane.c \
205
209
        git-apply-stash-pane.h \
206
 
        git-diff-stash-pane.c \
207
 
        git-diff-stash-pane.h \
208
210
        git-drop-stash-pane.c \
209
211
        git-drop-stash-pane.h \
210
212
        git-clear-stash-pane.c \
224
226
        git-patch-series-pane.c \
225
227
        git-patch-series-pane.h \
226
228
        git-apply-mailbox-pane.c \
227
 
        git-apply-mailbox-pane.h
 
229
        git-apply-mailbox-pane.h \
 
230
        git-status-factory.c \
 
231
        git-status-factory.h
228
232
        
229
233
 
230
234
libanjuta_git_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
233
237
libanjuta_git_la_LIBADD = \
234
238
        $(LIBANJUTA_LIBS)
235
239
 
 
240
gsettings_in_file = org.gnome.anjuta.plugins.git.gschema.xml.in
 
241
gsettings_SCHEMAS = $(gsettings_in_file:.xml.in=.xml)
 
242
@INTLTOOL_XML_NOMERGE_RULE@
 
243
@GSETTINGS_RULES@
 
244
 
236
245
EXTRA_DIST = \
237
 
        $(git_glade_DATA) \
238
 
        $(git_plugin_DATA) \
239
 
        $(plugin_in_files)
 
246
        $(plugin_in_files) \
 
247
        $(gsettings_in_file)
 
248
 
 
249
CLEANFILES = $(gsettings_SCHEMAS)
240
250
 
241
251
-include $(top_srcdir)/git.mk