summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2020-02-16 14:20:54 +0100
committerraveit65 <[email protected]>2020-02-17 13:16:20 +0100
commit378db5b5244fc195a91993d50e4a5d1d86e430a9 (patch)
tree78926f0fb5ca53a24aa4bd559aa683eb16bf7687
parentf3c815577cb151706408a5b0f2469f077b276b8f (diff)
downloadmate-desktop-378db5b5244fc195a91993d50e4a5d1d86e430a9.tar.bz2
mate-desktop-378db5b5244fc195a91993d50e4a5d1d86e430a9.tar.xz
build: add meson config files to EXTRA_DIST
fixes https://github.com/mate-desktop/mate-desktop/issues/431
-rw-r--r--Makefile.am12
-rw-r--r--docs/reference/mate-desktop/Makefile.am2
-rw-r--r--icons/Makefile.am3
-rw-r--r--libmate-desktop/Makefile.am6
-rw-r--r--man/Makefile.am5
-rw-r--r--mate-about/Makefile.am8
-rw-r--r--schemas/Makefile.am3
-rw-r--r--tools/Makefile.am4
8 files changed, 31 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 0009be1..01b0f11 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -10,9 +10,15 @@ DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
CFLAGS='-Wno-deprecated-declarations'
-EXTRA_DIST = \
- autogen.sh \
- COPYING-DOCS
+EXTRA_DIST = \
+ abi-check \
+ autogen.sh \
+ config.meson.h\
+ COPYING-DOCS \
+ meson.build \
+ meson_options.txt \
+ po/meson.build \
+ utils/post_install.py
CLEANFILES =
diff --git a/docs/reference/mate-desktop/Makefile.am b/docs/reference/mate-desktop/Makefile.am
index d7eff4d..f758af5 100644
--- a/docs/reference/mate-desktop/Makefile.am
+++ b/docs/reference/mate-desktop/Makefile.am
@@ -75,6 +75,6 @@ include $(top_srcdir)/gtk-doc.make
# Other files to distribute
# e.g. EXTRA_DIST += version.xml.in
-EXTRA_DIST +=
+EXTRA_DIST += meson.build
-include $(top_srcdir)/git.mk
diff --git a/icons/Makefile.am b/icons/Makefile.am
index b8bc6ad..417a906 100644
--- a/icons/Makefile.am
+++ b/icons/Makefile.am
@@ -16,6 +16,9 @@ nobase_dist_icons_DATA = \
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+EXTRA_DIST = \
+ meson.build
+
.PHONY: build-png-icons clean-png-icons
install-data-hook: update-icon-cache
diff --git a/libmate-desktop/Makefile.am b/libmate-desktop/Makefile.am
index 75d00b4..0c63a9f 100644
--- a/libmate-desktop/Makefile.am
+++ b/libmate-desktop/Makefile.am
@@ -137,8 +137,10 @@ CLEANFILES += $(gir_DATA) $(typelib_DATA)
endif
EXTRA_DIST = \
- mate-desktop-2.0.pc.in \
- mate-desktop-2.0-uninstalled.pc.in \
+ meson.build \
+ mate-desktop.map \
+ mate-desktop-2.0.pc.in \
+ mate-desktop-2.0-uninstalled.pc.in \
$(pnpdata_DATA_dist)
MAINTAINERCLEANFILES = \
diff --git a/man/Makefile.am b/man/Makefile.am
index 227b6e3..865e424 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -4,6 +4,9 @@ if MATE_ABOUT_ENABLED
man_MANS += mate-about.1
endif
-EXTRA_DIST = mate-about.1 mate-color-select.1
+EXTRA_DIST = \
+ meson.build \
+ mate-about.1 \
+ mate-color-select.1
-include $(top_srcdir)/git.mk
diff --git a/mate-about/Makefile.am b/mate-about/Makefile.am
index 79c03e4..85d763c 100644
--- a/mate-about/Makefile.am
+++ b/mate-about/Makefile.am
@@ -18,9 +18,11 @@ mate-about.desktop: mate-about.desktop.in
versiondir = $(datadir)/mate-about
version_DATA = mate-version.xml
-EXTRA_DIST = $(desktop_in_files) \
- mate-about.h.in \
- mate-version.xml.in
+EXTRA_DIST = \
+ $(desktop_in_files) \
+ meson.build \
+ mate-about.h.in \
+ mate-version.xml.in
CLEANFILES = $(desktop_DATA) $(bin_PROGRAMS) $(version_DATA) mate-about.h
diff --git a/schemas/Makefile.am b/schemas/Makefile.am
index 68d15a6..515748f 100644
--- a/schemas/Makefile.am
+++ b/schemas/Makefile.am
@@ -21,7 +21,8 @@ gsettings_SCHEMAS = \
@GSETTINGS_RULES@
EXTRA_DIST = \
- $(gsettings_SCHEMAS)
+ $(gsettings_SCHEMAS) \
+ meson.build
CLEANFILES = \
*.gschema.valid
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 88c720b..cd31f8f 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -22,6 +22,8 @@ desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
mate-color-select.desktop: mate-color-select.desktop.in
$(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
-EXTRA_DIST = $(desktop_in_files)
+EXTRA_DIST = \
+ $(desktop_in_files) \
+ meson.build
CLEANFILES = $(desktop_DATA) $(bin_PROGRAMS)