mirror of
https://gitlab.nic.cz/knot/knot-dns.git
synced 2026-02-03 18:49:28 -05:00
python: add Makefile to distribute the scripts
This commit is contained in:
parent
8d9c7e4fb6
commit
de8f2ff2d3
4 changed files with 9 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
5
python/Makefile.am
Normal file
5
python/Makefile.am
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
EXTRA_DIST = \
|
||||
libknot/__init__.py \
|
||||
libknot/control.py \
|
||||
stats_http.py \
|
||||
stats_influxdb.py
|
||||
Loading…
Reference in a new issue