2013-05-15 23:03:52 -04:00
|
|
|
# Builds thoughts (well, not quite like that)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 Mike Gerwitz
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
2013-05-15 22:30:35 -04:00
|
|
|
|
2013-05-26 21:01:07 -04:00
|
|
|
pages := $(patsubst %.pg, %.html, \
|
|
|
|
$(shell find docs/ -name '*.pg'))
|
2013-05-21 22:49:19 -04:00
|
|
|
articles := $(patsubst %.txt, %.html, \
|
|
|
|
$(shell find docs/ -name '*.txt'))
|
2013-05-21 22:45:13 -04:00
|
|
|
www_root := www-root/
|
2013-05-15 22:59:51 -04:00
|
|
|
|
2013-05-26 21:01:07 -04:00
|
|
|
# configured repo2html command
|
|
|
|
repo2html := repo2html \
|
2013-05-25 16:37:15 -04:00
|
|
|
-t 'Mike Gerwitz' \
|
|
|
|
-d 'Free Software Hacker' \
|
2013-05-15 22:30:35 -04:00
|
|
|
-c 'Mike Gerwitz' \
|
2013-05-22 23:19:43 -04:00
|
|
|
-l 'Verbatim redistribution of this document in its entirety is permitted provided that this copyright notice is preserved.' \
|
2013-05-19 17:14:20 -04:00
|
|
|
-C '/style.css' \
|
|
|
|
-T "$(PWD)/tpl" \
|
2013-05-26 21:01:07 -04:00
|
|
|
-E
|
|
|
|
|
|
|
|
.PHONY: default clean pages articles thoughts
|
|
|
|
|
|
|
|
default: www-root
|
|
|
|
|
|
|
|
thoughts:
|
|
|
|
mkdir -p "$(www_root)"
|
|
|
|
$(repo2html) \
|
2013-05-21 22:45:13 -04:00
|
|
|
-R 40 \
|
|
|
|
-o "$(www_root)" \
|
2013-05-27 16:59:26 -04:00
|
|
|
'http://mikegerwitz.com/' \
|
2013-05-21 22:45:13 -04:00
|
|
|
> "$(www_root)/index.html"
|
2013-05-15 22:59:51 -04:00
|
|
|
|
2013-05-17 22:34:32 -04:00
|
|
|
# all .txt articles will be compiled with asciidoc, then post-processed with the
|
|
|
|
# mgify script
|
|
|
|
%.html: %.txt
|
|
|
|
asciidoc -fasciidoc.conf -v \
|
2013-05-22 23:19:43 -04:00
|
|
|
-a stylesdir= \
|
|
|
|
-a themedir=$(PWD)/ \
|
2013-05-17 22:34:32 -04:00
|
|
|
$<
|
|
|
|
./tools/mgify "$@"
|
|
|
|
|
2013-05-26 21:01:07 -04:00
|
|
|
%.html: %.pg
|
2013-05-27 16:59:44 -04:00
|
|
|
$(repo2html) -i content < $< > $@
|
2013-05-26 21:01:07 -04:00
|
|
|
|
|
|
|
pages: $(pages)
|
2013-05-21 22:49:19 -04:00
|
|
|
articles: $(articles)
|
2013-05-26 21:01:07 -04:00
|
|
|
docs: pages articles
|
|
|
|
www-root: docs thoughts
|
2013-05-19 17:14:20 -04:00
|
|
|
mkdir -p www-root/papers
|
2013-05-25 11:09:26 -04:00
|
|
|
( cd docs/ && find . -name '*.html' -exec ../tools/doc-cp {} ../www-root/{} \; )
|
2013-05-19 17:14:20 -04:00
|
|
|
cp -r images/ www-root/
|
|
|
|
cp style.css www-root/
|
|
|
|
ln -sf ../images www-root/papers/images
|
2013-05-17 22:34:32 -04:00
|
|
|
|
2013-05-15 22:59:51 -04:00
|
|
|
clean:
|
2013-05-21 22:45:13 -04:00
|
|
|
rm -rf [0-9]*/ www-root/
|