WireGuard-Config-Generator/Makefile

11 lines
291 B
Makefile
Raw Normal View History

2022-10-26 18:30:01 +02:00
clean: ## Clean config files
2022-09-25 11:28:14 +02:00
rm -f *.conf
2022-10-26 18:30:01 +02:00
run: clean ## Run the script
python3 main.py
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: clean run help
.DEFAULT_GOAL := help