Compare commits

..

No commits in common. "52b7c1f3e0d91c833fb386f9a7d47cf659e5171e" and "c8283e1d085003359aabcaa4b51bf8f28fae4d45" have entirely different histories.

2 changed files with 3 additions and 12 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
*.txt
map.txt

View File

@ -1,14 +1,5 @@
.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
map.txt: map.ge
grep -v '# unimportant' $< | graph-easy --boxart > $@
cat $@
full_map.txt: map.ge ## Generating full_map.txt with graph-easy
full_map.txt: map.ge
graph-easy --boxart < $< > $@
cat $@