mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-06-29 01:38:47 -07:00
18 lines
333 B
Makefile
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
|