[gedit] Fix distcheck
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] Fix distcheck
- Date: Fri, 2 Mar 2012 17:27:44 +0000 (UTC)
commit a3706f7de7a4b4b3d3ef8477f663c80fe6f3e53c
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Fri Mar 2 18:25:29 2012 +0100
Fix distcheck
gedit/Makefile.am | 11 ++++++++---
plugins/docinfo/Makefile.am | 10 +++++++---
plugins/filebrowser/Makefile.am | 7 ++++---
plugins/sort/Makefile.am | 9 ++++++---
plugins/spell/Makefile.am | 8 +++++---
plugins/time/Makefile.am | 8 +++++---
6 files changed, 35 insertions(+), 18 deletions(-)
---
diff --git a/gedit/Makefile.am b/gedit/Makefile.am
index 47a5845..8d1615c 100644
--- a/gedit/Makefile.am
+++ b/gedit/Makefile.am
@@ -258,8 +258,8 @@ gedit-marshal.c: gedit-marshal.list $(GLIB_GENMARSHAL)
$(AM_V_GEN) echo "#include \"gedit-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --body --prefix=gedit_marshal >> $@
-gedit-resources.c: gedit.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit.gresource.xml
+gedit-resources.c: gedit.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/gedit.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit.gresource.xml
if ENABLE_PYTHON
overridesdir = $(pyoverridesdir)
@@ -272,7 +272,12 @@ EXTRA_DIST = \
gedit-enum-types.c.template \
gedit-marshal.list \
gedit.rc \
- gedit.gresource.xml
+ gedit.gresource.xml \
+ gedit-ui.xml \
+ gedit-encodings-dialog.ui \
+ gedit-preferences-dialog.ui \
+ gedit-replace-dialog.ui \
+ gedit-print-preferences.ui
CLEANFILES = $(BUILT_SOURCES) $(BUILT_SOURCES_PRIVATE)
diff --git a/plugins/docinfo/Makefile.am b/plugins/docinfo/Makefile.am
index 4be4875..a5f368b 100644
--- a/plugins/docinfo/Makefile.am
+++ b/plugins/docinfo/Makefile.am
@@ -20,8 +20,8 @@ libdocinfo_la_SOURCES = \
libdocinfo_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libdocinfo_la_LIBADD = $(GEDIT_LIBS)
-gedit-docinfo-resources.c: gedit-docinfo.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit-docinfo.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit-docinfo.gresource.xml
+gedit-docinfo-resources.c: gedit-docinfo.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/gedit-docinfo.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit-docinfo.gresource.xml
plugin_in_files = docinfo.plugin.desktop.in
@@ -29,7 +29,11 @@ plugin_in_files = docinfo.plugin.desktop.in
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-EXTRA_DIST = $(plugin_in_files)
+EXTRA_DIST = \
+ $(plugin_in_files) \
+ gedit-docinfo.gresource.xml \
+ gedit-docinfo-plugin.ui
+
CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA)
DISTCLEANFILES = $(BUILT_SOURCES) $(plugin_DATA)
diff --git a/plugins/filebrowser/Makefile.am b/plugins/filebrowser/Makefile.am
index cc6178f..cf29430 100644
--- a/plugins/filebrowser/Makefile.am
+++ b/plugins/filebrowser/Makefile.am
@@ -64,8 +64,8 @@ plugin_in_files = filebrowser.plugin.desktop.in
%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
-gedit-file-browser-resources.c: gedit-file-browser.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit-file-browser.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit-file-browser.gresource.xml
+gedit-file-browser-resources.c: gedit-file-browser.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/gedit-file-browser.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit-file-browser.gresource.xml
gedit-file-browser-enum-types.h: gedit-file-browser-enum-types.h.template $(NOINST_H_FILES) $(GLIB_MKENUMS)
(cd $(srcdir) && $(GLIB_MKENUMS) --template gedit-file-browser-enum-types.h.template $(NOINST_H_FILES)) > $@
@@ -102,7 +102,8 @@ EXTRA_DIST = \
gedit-file-browser-enum-types.c.template \
gedit-file-browser-enum-register.c.template \
gedit-file-browser-marshal.list \
- org.gnome.gedit.plugins.filebrowser.gschema.xml.in.in
+ org.gnome.gedit.plugins.filebrowser.gschema.xml.in.in \
+ gedit-file-browser-widget-ui.xml
CLEANFILES = \
$(plugin_DATA) \
diff --git a/plugins/sort/Makefile.am b/plugins/sort/Makefile.am
index 2e7ed60..0d0b439 100644
--- a/plugins/sort/Makefile.am
+++ b/plugins/sort/Makefile.am
@@ -20,8 +20,8 @@ libsort_la_SOURCES = \
libsort_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libsort_la_LIBADD = $(GEDIT_LIBS)
-gedit-sort-resources.c: gedit-sort.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit-sort.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit-sort.gresource.xml
+gedit-sort-resources.c: gedit-sort.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/gedit-sort.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit-sort.gresource.xml
plugin_in_files = sort.plugin.desktop.in
@@ -29,7 +29,10 @@ plugin_in_files = sort.plugin.desktop.in
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
-EXTRA_DIST = $(plugin_in_files)
+EXTRA_DIST = \
+ $(plugin_in_files) \
+ gedit-sort-plugin.ui \
+ gedit-sort.gresource.xml
CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA)
DISTCLEANFILES = $(BUILT_SOURCES) $(plugin_DATA)
diff --git a/plugins/spell/Makefile.am b/plugins/spell/Makefile.am
index d6940a3..0b97ec1 100644
--- a/plugins/spell/Makefile.am
+++ b/plugins/spell/Makefile.am
@@ -58,8 +58,8 @@ gedit-spell-marshal.c: gedit-spell-marshal.list $(GLIB_GENMARSHAL)
$(AM_V_GEN) echo "#include \"gedit-spell-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --body --prefix=gedit_marshal >> $@
-gedit-spell-resources.c: gedit-spell.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit-spell.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit-spell.gresource.xml
+gedit-spell-resources.c: gedit-spell.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/gedit-spell.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit-spell.gresource.xml
plugin_in_files = spell.plugin.desktop.in
@@ -70,7 +70,9 @@ plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
EXTRA_DIST = \
$(plugin_in_files) \
gedit-spell-marshal.list \
- gedit-spell.gresource.xml
+ gedit-spell.gresource.xml \
+ spell-checker.ui \
+ languages-dialog.ui
CLEANFILES = $(BUILT_SOURCES) $(plugin_DATA)
diff --git a/plugins/time/Makefile.am b/plugins/time/Makefile.am
index 2b8de1d..73de45b 100644
--- a/plugins/time/Makefile.am
+++ b/plugins/time/Makefile.am
@@ -20,8 +20,8 @@ libtime_la_SOURCES = \
libtime_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libtime_la_LIBADD = $(GEDIT_LIBS)
-gedit-time-resources.c: gedit-time.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies gedit-time.gresource.xml)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source gedit-time.gresource.xml
+gedit-time-resources.c: gedit-time.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies $(srcdir)/gedit-time.gresource.xml)
+ $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/gedit-time.gresource.xml
plugin_in_files = time.plugin.desktop.in
@@ -39,7 +39,9 @@ gsettings_SCHEMAS = org.gnome.gedit.plugins.time.gschema.xml
EXTRA_DIST = \
$(plugin_in_files) \
org.gnome.gedit.plugins.time.gschema.xml.in.in \
- gedit-time.gresource.xml
+ gedit-time.gresource.xml \
+ gedit-time-dialog.ui \
+ gedit-time-setup-dialog.ui
CLEANFILES = $(plugin_DATA) $(gsettings_SCHEMAS) $(BUILT_SOURCES)
DISTCLEANFILES = $(plugin_DATA) $(gsettings_SCHEMAS) $(BUILT_SOURCES)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]