# Makefile. # # This file is a part of phdru.name homepage/blog/news generator scripts. # Author: Oleg BroytMan . # Copyright: (C) 2006-2011 PhiloSoft Design. # __version__ = "$Revision$"[11:-2] # __revision__ = "$Id$" # __date__ = "$Date$"[7:-2] # __author__ = "Oleg Broytman " # __copyright__ = "Copyright (C) 2006-2011 PhiloSoft Design" %.py: %.tmpl umask 022; cheetah compile --nobackup $< && compyle $@ %.html: %.tmpl umask 022; PYTHONPATH=. cheetah fill --nobackup $< .PHONY: phdru.name phdru.name: phd_site.py news blog html .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) .PHONY: blog blog: atom_10.py rss_20.py ./reindex_blog_ru templates = $(shell find ../htdocs/phdru.name/public_html -type f -name \*.tmpl -print) htmls = $(patsubst %.tmpl,%.html,$(templates)) .PHONY: html html: $(htmls)