Set up a clean namespace for the initial PAIP implementation
Also figure out the 5AM unit testing crap.
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Tue, 08 Mar 2016 12:31:44 +0000 | 
    
        | parents | c60cac27a0a7 | 
    
        | children | d08be7892816 | 
.PHONY: test pubdocs
docfiles = $(shell ls docs/*.markdown)
test:
	sbcl --noinform --load test/run.lisp  --eval '(quit)'
docs: docs/build/index.html
docs/build/index.html: $(docfiles)
	cd docs && ~/.virtualenvs/d/bin/d
pubdocs: docs
	hg -R ~/src/sjl.bitbucket.org pull -u
	rsync --delete -a ./docs/build/ ~/src/sjl.bitbucket.org/bones
	hg -R ~/src/sjl.bitbucket.org commit -Am 'bones: Update site.'
	hg -R ~/src/sjl.bitbucket.org push