diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-01-08 13:06:54 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-01-10 06:27:50 +0100 |
commit | bbc8c52c5dd0771e5357b873fa2ff33ce99ad0a4 (patch) | |
tree | 50e3cf4210a3333a0a074aeb55852adac88ed973 /docs | |
parent | 1e7ab83910c40d089dd14f8ac36c8b4b715b9395 (diff) |
build: Add meson build files to distributable files
Although it is possible to generate distributable files on meson
since version 0.41 by using the `ninja dist` command, autotools does
different things that end up creating a different distributable
file.
meson build files have been added to autotools build files as
distributable files, so the whole meson port would also be
distributed.
https://mail.gnome.org/archives/networkmanager-list/2018-January/msg00047.html
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/Makefile.am | 2 | ||||
-rw-r--r-- | docs/libnm-glib/Makefile.am | 2 | ||||
-rw-r--r-- | docs/libnm-util/Makefile.am | 2 | ||||
-rw-r--r-- | docs/libnm/Makefile.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/api/Makefile.am b/docs/api/Makefile.am index 67f0a2269..39a23b6a9 100644 --- a/docs/api/Makefile.am +++ b/docs/api/Makefile.am @@ -101,7 +101,7 @@ include $(top_srcdir)/gtk-doc.make #################################### -EXTRA_DIST += version.xml.in settings-spec.xsl $(GENERATED_FILES) +EXTRA_DIST += version.xml.in settings-spec.xsl meson.build $(GENERATED_FILES) CLEANFILES += html/* tmpl/* xml/* \ NetworkManager-sections.txt \ NetworkManager-overrides.txt diff --git a/docs/libnm-glib/Makefile.am b/docs/libnm-glib/Makefile.am index b975f1b2b..662db95ff 100644 --- a/docs/libnm-glib/Makefile.am +++ b/docs/libnm-glib/Makefile.am @@ -72,7 +72,7 @@ GTKDOC_LIBS = \ # include common portion ... include $(top_srcdir)/gtk-doc.make -EXTRA_DIST += version.xml.in +EXTRA_DIST += version.xml.in meson.build CLEANFILES += \ libnm-glib-sections.txt \ diff --git a/docs/libnm-util/Makefile.am b/docs/libnm-util/Makefile.am index 5218cc40b..4e8ede134 100644 --- a/docs/libnm-util/Makefile.am +++ b/docs/libnm-util/Makefile.am @@ -67,7 +67,7 @@ GTKDOC_LIBS = \ # include common portion ... include $(top_srcdir)/gtk-doc.make -EXTRA_DIST += version.xml.in +EXTRA_DIST += version.xml.in meson.build CLEANFILES += \ libnm-util-sections.txt \ diff --git a/docs/libnm/Makefile.am b/docs/libnm/Makefile.am index 3e0eca49e..3c1f803a4 100644 --- a/docs/libnm/Makefile.am +++ b/docs/libnm/Makefile.am @@ -86,7 +86,7 @@ GTKDOC_LIBS = \ # include common portion ... include $(top_srcdir)/gtk-doc.make -EXTRA_DIST += version.xml.in +EXTRA_DIST += version.xml.in meson.build CLEANFILES += \ libnm-sections.txt \ |