X-Git-Url: https://git.phdru.name/?p=phdru.name%2Fphdru.name.git;a=blobdiff_plain;f=Makefile;h=6cd9e82736246ed8d4bae6658d467ac2e229ee4d;hp=7be6058f86d4accc4659d812beeb94d1bc57c98c;hb=HEAD;hpb=2120a9790c1341f0cdfb536ae011173605eee785 diff --git a/Makefile b/Makefile index 7be6058..5064363 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,18 @@ # This file is a part of phdru.name homepage/blog/news generator scripts. # __author__ = "Oleg Broytman " -# __copyright__ = "Copyright (C) 2006-2012 PhiloSoft Design" +# __copyright__ = "Copyright (C) 2006-2017 PhiloSoft Design" + + +.SUFFIXES: # Clear the suffix list +.SUFFIXES: .py .tmpl .html %.py: %.tmpl - umask 022; cheetah compile --nobackup $< && compyle $@ + umask 022; python2.7 `which cheetah` compile --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup $< && compyle $@ && chmod +x $@ -%.html: %.tmpl - umask 022; PYTHONPATH=. cheetah fill --nobackup --stdout $< | iconv -f utf-8 > $@ +%.html: %.tmpl phd_site.py + umask 022; PYTHONPATH=. PYTHONIOENCODING=koi8-r:replace python2.7 `which cheetah` fill --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup --stdout $< | iconv -c -f utf-8 -t koi8-r >$@ .PHONY: fast @@ -22,7 +26,7 @@ all: phdru.name .PHONY: phdru.name -phdru.name: news blog +phdru.name: blog news .PHONY: blog @@ -31,13 +35,45 @@ blog: phd_site.py atom_10.py rss_20.py $(MAKE) html -templates = $(shell find ../htdocs/phdru.name/public_html -type f -name \*.tmpl -print) +allfiles = $(shell find ../htdocs/phdru.name -type f ! -name sitemap.xml -print) +templates = $(shell find ../htdocs/phdru.name -type f -name \*.tmpl -print) htmls = $(patsubst %.tmpl,%.html,$(templates)) .PHONY: html -html: phd_site.py $(htmls) +html: phd_site.py $(htmls) special-templates sitemap .PHONY: news news: atom_10.py rss_20.py - (umask 022; PYTHONPATH=. ./make-news.py en ../htdocs/phdru.name/public_html && ./make-news.py ru ../htdocs/phdru.name/public_html/Russian) + (umask 022; PYTHONPATH=. ./make-news.py en ../htdocs/phdru.name && ./make-news.py ru ../htdocs/phdru.name/Russian) + + +SITEMAP = ../htdocs/phdru.name/sitemap.xml + +.PHONY: sitemap +sitemap: $(SITEMAP) + +$(SITEMAP): $(allfiles) sitemaps/phdru.name-config.xml + sitemap_gen.py --config=sitemaps/phdru.name-config.xml + + +.PHONY: special-templates +special-templates: ../htdocs/phdru.name/Russian/Software/instant-messengers/instant-messengers-lj.html ../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio-lj.html ../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio2-lj.html + +../htdocs/phdru.name/Russian/Software/instant-messengers/instant-messengers-lj.html: ../htdocs/phdru.name/Russian/Software/instant-messengers/instant-messengers.html + { sed -e '1,/alink="#ff0000">/d' \ + -e 's/
/&/' \ + -e '/
/,$$d' $< | sed '1,2d'; \ + echo '
'; } >$@ + +../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio-lj.html: ../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio.html + { sed -e '1,/alink="#ff0000">/d' \ + -e 's/
/&/' \ + -e '/
/,$$d' $< | sed '1,2d'; \ + echo '
'; } >$@ + +../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio2-lj.html: ../htdocs/phdru.name/Russian/remote-work-bio/remote-work-bio2.html + { sed -e '1,/alink="#ff0000">/d' \ + -e 's/
/&/' \ + -e '/
/,$$d' $< | sed '1,2d'; \ + echo '
'; } >$@