diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1eef09b --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +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