]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
build: no recursive make for "py/Makefile.am"
authorThomas Haller <thaller@redhat.com>
Thu, 19 Oct 2023 13:00:02 +0000 (15:00 +0200)
committerFlorian Westphal <fw@strlen.de>
Thu, 2 Nov 2023 10:48:30 +0000 (11:48 +0100)
Merge the Makefile.am under "py/" into the toplevel Makefile.am. This is
a step in the effort of dropping recursive make.

Signed-off-by: Thomas Haller <thaller@redhat.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
Makefile.am
configure.ac
py/Makefile.am [deleted file]

index bfc64ebbed710c7955ccfdb6f26c10357c362d8f..8b8de7bd141a20a89d11f489a7095b8f90367d4e 100644 (file)
@@ -1,5 +1,7 @@
 ACLOCAL_AMFLAGS = -I m4
 
+EXTRA_DIST =
+
 pkginclude_HEADERS = \
        include/nftables/libnftables.h \
        $(NULL)
@@ -73,11 +75,21 @@ noinst_HEADERS = \
 SUBDIRS =      src     \
                files   \
                doc     \
-               examples\
-               py
+               examples
+
+EXTRA_DIST += \
+       py/pyproject.toml \
+       py/setup.cfg \
+       py/setup.py \
+       py/src/__init__.py \
+       py/src/nftables.py \
+       py/src/schema.json \
+       $(NULL)
 
-EXTRA_DIST =   tests   \
-               files
+EXTRA_DIST += \
+       files \
+       tests \
+       $(NULL)
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libnftables.pc
index 67ca50fddf67a5ecfb025bf24e2d376b6d0b4c6c..389efbe9f730218ed54bb95d203d9809e20c6abe 100644 (file)
@@ -123,7 +123,6 @@ AC_CONFIG_FILES([                                   \
                files/nftables/Makefile                 \
                files/osf/Makefile                      \
                doc/Makefile                            \
-               py/Makefile                             \
                examples/Makefile                       \
                ])
 AC_OUTPUT
diff --git a/py/Makefile.am b/py/Makefile.am
deleted file mode 100644 (file)
index 76aa082..0000000
+++ /dev/null
@@ -1 +0,0 @@
-EXTRA_DIST = pyproject.toml setup.cfg setup.py src