diff options
Diffstat (limited to 'abdul-blog/Makefile')
-rw-r--r-- | abdul-blog/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abdul-blog/Makefile b/abdul-blog/Makefile new file mode 100644 index 0000000..efa6127 --- /dev/null +++ b/abdul-blog/Makefile @@ -0,0 +1,22 @@ +GEMINI_ONLY = \ + minetest-server \ + matterbridge-in-tildeserver +GEMINI_AND_HTML = \ + index \ + hello-world \ + mine-guix-shell \ + learning-guix-home + +all: $(addsuffix .html,$(GEMINI_ONLY) $(GEMINI_AND_HTML)) +.PHONY: all + +%.html: %.gmi + if printf %s '$(GEMINI_ONLY)' | grep -q $*; then \ + ./convert_gemtext_file.py sorry-gemini-only.gmi > $@; \ + else \ + ./convert_gemtext_file.py $< > $@; \ + fi + +clean: + rm -rf *.html +.PHONY: clean |