blocklisty/Makefile
2025-05-20 16:45:05 +02:00

10 lines
192 B
Makefile

CONVERTER = python3 src/converter.py
build:
$(CONVERTER) --inputfile src/seo-source.json --targetformat adguard --outputfile dist/seo-nonsense/adguard.txt
clean:
rm -rf dist/*
all: build