]> git.phdru.name Git - phdru.name/phdru.name.git/blob - Makefile
phd.pp.ru => phdru.name.
[phdru.name/phdru.name.git] / Makefile
1 # Makefile.
2 #
3 # This file is a part of phdru.name homepage/blog/news generator scripts.
4 # Author: Oleg BroytMan <phd@phdru.name>.
5 # Copyright: (C) 2006-2010 PhiloSoft Design.
6
7 # __version__ = "$Revision$"[11:-2]
8 # __revision__ = "$Id$"
9 # __date__ = "$Date$"[7:-2]
10 # __author__ = "Oleg Broytman <phd@phdru.name>"
11 # __copyright__ = "Copyright (C) 2006-2010 PhiloSoft Design"
12
13
14 %.py: %.tmpl
15         @(umask 022; cheetah compile --nobackup $<)
16
17 %.html: %.tmpl
18         @(umask 022; PYTHONPATH=. cheetah fill --nobackup $<)
19
20
21 .PHONY: phdru.name
22 phdru.name: phd_site.py news blog html
23
24
25 .PHONY: news
26 news: atom_10.py rss_20.py
27         @(umask 022; PYTHONPATH=. ./make-news.py en ../htdocs/phdru.name/public_html && ./make-news.py ru ../htdocs/phdru.name/public_html/Russian)
28
29
30 .PHONY: blog
31 blog: atom_10.py rss_20.py
32         @./reindex_blog_ru
33
34
35 templates = $(shell find ../htdocs/phdru.name/public_html -type f -name \*.tmpl -print)
36 htmls = $(patsubst %.tmpl,%.html,$(templates))
37
38 .PHONY: html
39 html: $(htmls)