diff --git a/Makefile b/Makefile index 17874fe..bdcda7d 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,26 @@ +help: + @echo "Options:" + @echo "\tmake pdf" + @echo "\tmake creature" + .PHONY: pdf pdf: overview.pdf rubbish/: mkdir rubbish +RANDOM != date +%s +TMP := /tmp/$(RANDOM).md +NAME := $(shell head -1 $(TMP) 2>/dev/null| tail -c+3) + +.PHONY: creature +creature: stats/$(NAME).md +$(TMP): + cp stats/template.md $(TMP) + $$EDITOR $(TMP) +stats/$(NAME).md: $(TMP) + mv $(TMP) stats/$(NAME).md + overview.pdf:| rubbish/overview.pdf ln rubbish/overview.pdf overview.pdf rubbish/overview.pdf: overview.tex