10 lines
192 B
Makefile
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
|