From 94a7e7c6ed25e32dd04f5a3003bf30acc741f383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Wed, 17 Apr 2019 12:05:00 +0200 Subject: [PATCH] Include meson build files into tarball --- Makefile.am | 2 +- fuzz/Makefile.am | 2 ++ include/Makefile.am | 2 ++ src/Makefile.am | 2 +- tests/Makefile.am | 2 ++ tools/Makefile.am | 2 ++ 6 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index f85966b..23ae673 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libpsl.pc -EXTRA_DIST = build-aux/config.rpath LICENSE +EXTRA_DIST = build-aux/config.rpath LICENSE meson.build meson_options.txt dist-hook: mkdir -p $(distdir)/list/tests cp -p $(PSL_FILE) $(distdir)/list diff --git a/fuzz/Makefile.am b/fuzz/Makefile.am index f98d186..abf0352 100644 --- a/fuzz/Makefile.am +++ b/fuzz/Makefile.am @@ -52,6 +52,8 @@ endif check_PROGRAMS = $(PSL_TESTS) +EXTRA_DIST = meson.build + dist-hook: find . -name '*.options' -exec cp -v '{}' $(distdir) ';' find . -name '*.dict' -exec cp -v '{}' $(distdir) ';' diff --git a/include/Makefile.am b/include/Makefile.am index a45de59..78bf98a 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1 +1,3 @@ include_HEADERS = libpsl.h + +EXTRA_DIST = meson.build diff --git a/src/Makefile.am b/src/Makefile.am index f9c0a3d..a30d180 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -21,6 +21,6 @@ libpsl_la_LDFLAGS = -no-undefined -version-info $(LIBPSL_SO_VERSION) suffixes_dafsa.h: $(PSL_FILE) $(srcdir)/psl-make-dafsa $(srcdir)/psl-make-dafsa --output-format=cxx+ "$(PSL_FILE)" suffixes_dafsa.h -EXTRA_DIST = psl-make-dafsa LICENSE.chromium +EXTRA_DIST = psl-make-dafsa LICENSE.chromium meson.build dist_man_MANS = psl-make-dafsa.1 diff --git a/tests/Makefile.am b/tests/Makefile.am index 8b29b61..480b236 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -40,3 +40,5 @@ psl_ascii.dafsa: $(top_srcdir)/list/public_suffix_list.dat clean-local: rm -f psl.dafsa psl_ascii.dafsa + +EXTRA_DIST = meson.build diff --git a/tools/Makefile.am b/tools/Makefile.am index 25172fa..0c75994 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -4,3 +4,5 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include LDADD = $(top_builddir)/src/libpsl.la dist_man_MANS = psl.1 + +EXTRA_DIST = meson.build