Use Makefile in Docker test image

This commit is contained in:
Justin Bollinger
2026-01-31 23:08:50 -05:00
parent 1f5470b2f3
commit afb453b01c
2 changed files with 16 additions and 1 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: all install clean hashcat-utils
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 {} +