X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/dcc71b98fdb8c653c2edeb9994d26d38003f4116..17f94046ef182e03c5fbf3e10430fcf01dc44b0f:/GNUmakefile diff --git a/GNUmakefile b/GNUmakefile index bbf2bb5..ae9eab7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,38 +1,44 @@ -SRC := $(filter-out $(wildcard meta_*), $(wildcard *.m4)) -OUTPUTS := $(patsubst %.m4,out/%.html, $(SRC)) -STATIC := $(patsubst static/%,out/%, $(filter-out static/GNUmakefile, $(wildcard static/* static/.*))) - -all: $(OUTPUTS) out/notes.atom out/notes.rss out/style.css out/GNUmakefile $(STATIC) - -out/%.html: %.m4 header.html footer.html - @mkdir -p $(@D) - m4 $< > $@ -out/notes.%: meta_feed_%.m4 $(SRC) header.html footer.html - m4 $< > $@ - sed -i 's|href="/\([^/]\)|href="https://bndl.org/\1|' $@ -out/GNUmakefile: GNUmakefile ; ln -s $(PWD)/$< $@ -$(STATIC): ; ln -s $(PWD)/static/$(@F) $@ - -# publications bibliography -static/publications-partial.html: static/bandali.bib static/bandali-bib-* -static/publications-partial.html: $(filter-out static/publications-partial.html, $(wildcard static/publications-*)) -static/publications-partial.html: - $(MAKE) -C $(@D) $(@F) -out/publications.html: static/publications-partial.html -out/bandali-bib.html: static/bandali-bib-partial.html +# GNUmakefile --- GNU Makefile for building my personal site + +# Copyright (c) 2020-2021 bandali +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + + +gen-html = perl txt2pre $(1) < $< > $@ +port := $(if $(port),$(port),8000) + +TXT := $(filter-out bandali-pubkey.txt bandali.txt,$(wildcard *.txt)) +OUT := $(patsubst %.txt,%.html,$(TXT)) +OUT := $(patsubst bandali-%.html,%.html,$(OUT)) + +TXT_FA := $(filter-out fa/bandali.fa.txt,$(wildcard fa/*.fa.txt)) +OUT_FA := $(patsubst fa/%.fa.txt,fa/%.html,$(TXT_FA)) +OUT_FA := $(patsubst fa/bandali-%.html,fa/%.html,$(OUT_FA)) + +all: $(OUT) $(OUT_FA) index.html fa/index.html + +%.html: bandali-%.txt; $(gen-html) +%.html: %.txt; $(gen-html) +index.html: bandali.txt; $(call gen-html,--index) + +fa/%.html: fa/bandali-%.fa.txt; $(call gen-html,--lang='fa') +fa/%.html: fa/%.fa.txt; $(call gen-html,--lang='fa') +fa/index.html: fa/bandali.fa.txt; $(call gen-html,--lang='fa' --index) + clean: - rm -rf out/ + rm -f $(OUT) $(OUT_FA) index.html fa/index.html -deploy: - rsync -avzLP out/ abandali@bndl.org:www/bndl.org/ -# ssh abandali@bndl.org mv www/bndl.org/.htaccess-www www/.htaccess +serve: + python -m http.server $(port) || python -m SimpleHTTPServer $(port) watch: while true; do \ - echo $(SRC) header.html footer.html \ - static/bandali.bib static/bandali-bib-* static/publications-* \ - GNUmakefile static/GNUmakefile | \ - tr " " "\n" | entr -d make; done + echo $(TXT) $(TXT_FA) bandali.txt fa/bandali.fa.txt \ + GNUmakefile txt2pre | tr " " "\n" | entr -d make; done -.PHONY: deploy watch +.PHONY: all clean serve watch