diff --git a/.gitignore b/.gitignore index b0e085aaa..f60a19afb 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,8 @@ /src/Makefile.in /src/zscanner/Makefile /src/zscanner/Makefile.in +/python/Makefile +/python/Makefile.in /samples/Makefile /samples/Makefile.in /samples/knot.sample.conf diff --git a/Makefile.am b/Makefile.am index f6f6962f9..88d86ad86 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = libtap src tests tests-fuzz samples doc +SUBDIRS = libtap src tests tests-fuzz python samples doc .PHONY: singlehtml install-singlehtml singlehtml install-singlehtml: diff --git a/configure.ac b/configure.ac index 19559907e..34c2916aa 100644 --- a/configure.ac +++ b/configure.ac @@ -531,6 +531,7 @@ AC_CONFIG_FILES([Makefile tests/Makefile tests-fuzz/Makefile samples/Makefile + python/Makefile src/Makefile src/contrib/dnstap/Makefile src/dnssec/Makefile diff --git a/python/Makefile.am b/python/Makefile.am new file mode 100644 index 000000000..2c03a5bb7 --- /dev/null +++ b/python/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = \ + libknot/__init__.py \ + libknot/control.py \ + stats_http.py \ + stats_influxdb.py