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-06-04 22:50:01 -04:00
|
|
|
# #
|
2013-05-15 22:30:35 -04:00
|
|
|
|
2013-05-26 21:01:07 -04:00
|
|
|
pages := $(patsubst %.pg, %.html, \
|
2015-05-16 02:00:03 -04:00
|
|
|
$(shell find docs/ -name '*.pg'))
|
|
|
|
pages_md := $(patsubst %.md, %.html, \
|
|
|
|
$(shell find docs/ -name '*.md'))
|
2013-05-21 22:49:19 -04:00
|
|
|
articles := $(patsubst %.txt, %.html, \
|
2013-06-03 22:28:55 -04:00
|
|
|
$(shell find docs/ -maxdepth 2 -name '*.txt'))
|
|
|
|
# articles in TeX with an inappropriate var name
|
|
|
|
texticles=$(patsubst %/, %.html, $(dir $(shell find docs/ -name 'Makefile')))
|
2013-05-21 22:45:13 -04:00
|
|
|
www_root := www-root/
|
2013-06-03 22:28:55 -04:00
|
|
|
url_root := http://mikegerwitz.com
|
2013-05-30 23:15:29 -04:00
|
|
|
repo_url := https://gitorious.org/mtg-personal/thoughts
|
|
|
|
repo_commit_url := '$(repo_url)/commit/%s'
|
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-06-16 20:35:22 -04:00
|
|
|
-l 'This content is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.' \
|
2013-05-19 17:14:20 -04:00
|
|
|
-C '/style.css' \
|
2014-11-30 17:17:50 -05:00
|
|
|
-f 'tools/thoughts-fmt' \
|
2013-05-30 23:15:29 -04:00
|
|
|
-T '$(PWD)/tpl' \
|
|
|
|
-u '$(repo_url)' \
|
|
|
|
-U '$(repo_commit_url)' \
|
2013-06-06 14:28:31 -04:00
|
|
|
-E ''
|
2013-05-26 21:01:07 -04:00
|
|
|
|
2013-06-03 22:28:55 -04:00
|
|
|
.PHONY: default clean pages articles thoughts docs
|
2013-05-26 21:01:07 -04:00
|
|
|
|
|
|
|
default: www-root
|
|
|
|
|
|
|
|
thoughts:
|
|
|
|
mkdir -p "$(www_root)"
|
|
|
|
$(repo2html) \
|
2013-05-21 22:45:13 -04:00
|
|
|
-R 40 \
|
|
|
|
-o "$(www_root)" \
|
2013-05-30 23:15:29 -04:00
|
|
|
'$(url_root)' \
|
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-06-03 22:28:55 -04:00
|
|
|
# "pages"
|
2013-06-01 23:23:09 -04:00
|
|
|
%.html: %.pg docs/papers/.list
|
|
|
|
$(repo2html) -icontent -ftools/extfmt <$< >$@
|
2015-05-16 02:00:03 -04:00
|
|
|
%.html: %.md
|
|
|
|
$(repo2html) -icontent -ftools/mdfmt <$< >$@
|
2013-06-01 23:23:09 -04:00
|
|
|
|
2013-06-03 22:28:55 -04:00
|
|
|
# TeX papers are expected to have their own makefiles as well as an abstract.tex
|
|
|
|
%.html: coope/%.tex
|
|
|
|
$(MAKE) -C '$(dir $<)' pdf dvi
|
|
|
|
url_root='$(url_root)' ./tools/texdoc '$(dir $<)' | $(repo2html) -icontent -ftools/extfmt >$@
|
|
|
|
|
2013-06-04 22:27:02 -04:00
|
|
|
docs/papers/.list: thoughts articles
|
|
|
|
echo "$(articles) $(texticles)" | tr ' ' '\n' | tools/doclist >$@
|
2013-05-26 21:01:07 -04:00
|
|
|
|
2015-05-16 02:00:03 -04:00
|
|
|
pages: $(pages) $(pages_md)
|
2013-06-03 22:28:55 -04:00
|
|
|
articles: $(articles) $(texticles)
|
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-06-03 22:28:55 -04:00
|
|
|
( cd docs/ \
|
|
|
|
&& find . -maxdepth 2 -name '*.html' -exec ../tools/doc-cp {} ../www-root/{} \; \
|
2013-06-04 22:27:58 -04:00
|
|
|
&& find . -maxdepth 3 \( -name '*.pdf' -o -name '*.dvi' \) -exec cp {} ../www-root/{} \; \
|
2013-06-03 22:28:55 -04:00
|
|
|
)
|
2015-05-21 23:56:14 -04:00
|
|
|
cp -rv images/ fonts/ www-root/
|
2015-05-16 02:00:44 -04:00
|
|
|
cp -v style.css www-root/
|
|
|
|
mkdir -p www-root/docs
|
|
|
|
cp -rv docs/gh/ www-root/docs/
|
2013-05-17 22:34:32 -04:00
|
|
|
|
2013-05-15 22:59:51 -04:00
|
|
|
clean:
|
2013-06-04 22:28:50 -04:00
|
|
|
rm -rf www-root/
|
2015-05-16 22:35:53 -04:00
|
|
|
rm -f $(pages) $(pages_md) $(articles) $(texticles)
|