# Build everything necessary to compile the wiki.
-SUBDIRS = posts/drexel-thesis posts/Hooke posts/problempack \
+SUBDIRS = posts/drexel-thesis posts/problempack \
posts/rel-vcs posts/sawsim posts/Thesis posts/yacc2dot posts/Xmodmap \
posts/XSLT/chapter posts/XSLT/code
TARGETS = all clean
don't have easy access to Windows boxes with [[Python]], so I don't
test it there as often.
-See the [[README]], [[manual|html/index.html]], and [PyPI page][pypi]
-for more details.
+See the [manual][] and [PyPI page][pypi] for more details.
[Hooke]: http://code.google.com/p/hooke/
+[manual]: http://hooke.tremily.us/
[pypi]: http://pypi.python.org/pypi/Hooke/
[[!tag tags/hooke]]
+++ /dev/null
-REPO = git://tremily.us/hooke.git
-PACKAGE = hooke
-
-.PHONY : all checkout clean
-
-all : README.rst html
-
-clean :
- rm -rf $(PACKAGE) README.rst html
-
-$(PACKAGE) :
- git clone $(REPO) $@
-
-checkout : $(PACKAGE)
- (cd $(PACKAGE) && git checkout wtk && git pull)
-
-README.rst : checkout
- cp $(PACKAGE:%=%/README) $@
-
-$(PACKAGE:%=%/hooke/version.py) : checkout
- (cd $(PACKAGE) && update-copyright.py)
-
-.PHONY : $(PACKAGE:%=%/doc/build/html)
-$(PACKAGE:%=%/doc/build/html) : $(PACKAGE:%=%/hooke/version.py)
- (cd $(PACKAGE:%=%/doc) && scons)
-
-.PHONY : html
-html : $(PACKAGE:%=%/doc/build/html)
- rsync -avz "$</" "$@/"