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