dmzconf/Makefile

15 lines
402 B
Makefile
Raw Normal View History

2024-12-03 02:42:15 +00:00
.PHONY: help
help: ## Print the help message
@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z._-]+:.*?## / {printf "\033[36m%s\033[0m : %s\n", $$1, $$2}' $(MAKEFILE_LIST) | \
sort | \
column -s ':' -t
map.txt: map.ge ## Making map.txt
grep -v '# unimportant' $< | graph-easy --boxart > $@
2024-12-03 02:42:15 +00:00
cat $@
2024-12-03 02:42:15 +00:00
full_map.txt: map.ge ## Generating full_map.txt with graph-easy
2024-12-02 15:00:00 +00:00
graph-easy --boxart < $< > $@
2024-12-03 02:42:15 +00:00
cat $@