JustinTX's picture
Add files using upload-large-folder tool
2facf1f verified
.PHONY: update-count install-hooks help
help:
@echo "Frontier-CS Utilities"
@echo ""
@echo "Available commands:"
@echo " make update-count - Update problem count in README"
@echo " make install-hooks - Install pre-commit hooks"
@echo " make help - Show this help message"
update-count:
@echo "๐Ÿ“Š Updating problem count..."
@python3 scripts/update_problem_count.py
install-hooks:
@echo "๐Ÿ”ง Installing pre-commit hooks..."
@pip install pre-commit
@pre-commit install
@echo "โœ… Pre-commit hooks installed!"