Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

21 lines
310 B
Makefile

.PHONY: all
all:
.PHONY: test
test:
cd tests && python -m unittest
.PHONY: test-coverage
test-coverage:
pytest --cov=zeekclient --cov-report=html --cov-report=term
.PHONY: man
man:
./man/build.py
.PHONY: dist
dist:
rm -rf dist/*.tar.gz
python3 setup.py sdist
@printf "Package: "; echo dist/*.tar.gz