bandali(.fa).txt: link to atom and rss feeds
[~bandali/bndl.org] / GNUmakefile
index 36c83f8..24e9f9f 100644 (file)
@@ -1,61 +1,63 @@
 # GNUmakefile --- GNU Makefile for building my personal site
 
-# Copyright (C) 2020-2021 Amin Bandali <bandali@gnu.org>
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see
-# <https://www.gnu.org/licenses/>.
-
-
-SITE_DOMAIN := 'https://shemshak.org'
-SITE_PREFIX := '/~bandali'
-SITE_URL := '$(SITE_DOMAIN)$(SITE_PREFIX)'
-
-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 -D__d=$(SITE_DOMAIN) -D__p=$(SITE_PREFIX) $< > $@
-out/notes.%: meta_feed_%.m4 $(SRC) header.html footer.html
-       m4 -D__d=$(SITE_DOMAIN) -D__p=$(SITE_PREFIX) $< > $@
-       sed -i 's|href="/\([^/]\)|href="$(SITE_DOMAIN)/\1|' $@
-       sed -i 's|href="//|href="https://|' $@
-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
+# 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 = 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))
+FEEDS := notes.atom notes.rss
+NOTES := $\
+libreplanet-2021.txt $\
+fsf-internship-beyond.txt $\
+fsf-internship-intro.txt $\
+bandali-computing.txt $\
+
+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))
+FEEDS_FA := fa/notes.atom fa/notes.rss
+NOTES_FA := $\
+fa/fsf-internship-beyond.fa.txt $\
+fa/fsf-internship-intro.fa.txt $\
+fa/bandali-computing.fa.txt $\
+
+all: $(OUT) $(FEEDS) index.html $(OUT_FA) $(FEEDS_FA) fa/index.html
+
+%.html: bandali-%.txt txt2pre; $(gen)
+%.html: %.txt txt2pre; $(gen)
+index.html: bandali.txt txt2pre; $(call gen,--index)
+notes.%: $(NOTES) txt2pre
+       perl txt2pre --index --header --format='$*' > $@
+       for n in $(NOTES); do perl txt2pre --format='$*' < "$$n" >> $@; done
+       perl txt2pre --index --footer --format='$*' >> $@
+
+fa/%.html: fa/bandali-%.fa.txt txt2pre; $(call gen,--lang='fa')
+fa/%.html: fa/%.fa.txt txt2pre; $(call gen,--lang='fa')
+fa/index.html: fa/bandali.fa.txt txt2pre; $(call gen,--lang='fa' --index)
+fa/notes.%: $(NOTES_FA) txt2pre
+       perl txt2pre --lang='fa' --index --header --format='$*' > $@
+       for n in $(NOTES_FA); do perl txt2pre --lang='fa' --format='$*' < "$$n" >> $@; done
+       perl txt2pre --lang='fa' --index --footer --format='$*' >> $@
+
 
 clean:
-       rm -rf out/
+       rm -f $(OUT) $(OUT_FA) index.html fa/index.html
 
-deploy:
-       rsync -avzLP out/ bandali@shemshak.org:~/public_html/
+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