| 1 | .PHONY: install lint test convert correlations all clean |
| 2 | |
| 3 | install: |
| 4 | pip install -r requirements.txt |
| 5 | |
| 6 | lint: |
| 7 | sigma check rules/ |
| 8 | |
| 9 | test: |
| 10 | pytest -q |
| 11 | |
| 12 | convert: |
| 13 | python tools/convert.py |
| 14 | |
| 15 | correlations: |
| 16 | sigma convert -t splunk --without-pipeline rules/linux/credential-access/ |
| 17 | |
| 18 | all: lint test convert |
| 19 | |
| 20 | clean: |
| 21 | rm -rf dist .pytest_cache |