Files
hate_crack/Makefile
T
2026-01-31 23:17:16 -05:00

18 lines
333 B
Makefile

.PHONY: all install clean hashcat-utils test
all: hashcat-utils
hashcat-utils:
$(MAKE) -C hashcat-utils
install: hashcat-utils
uv tool install .
clean:
-$(MAKE) -C hashcat-utils clean
rm -rf .pytest_cache .ruff_cache build dist *.egg-info
find . -name "__pycache__" -type d -prune -exec rm -rf {} +
test:
uv run pytest -v