Makefile @ 8e950d7312af

Fix modify macros to comply with the spec

They happened to work in SBCL before, but according to the spec
`define-modify-macro` takes only a symbol as the function argument,
not a lambda or anything else.
author Steve Losh <steve@stevelosh.com>
date Sat, 20 Aug 2016 21:03:44 +0000
parents 25f352f92356
children 6aeaaa9a56bf
.PHONY: docs

sourcefiles = $(shell ffind --full-path --literal .lisp)

quickutils.lisp: make-quickutils.lisp
	sbcl --noinform --load make-quickutils.lisp  --eval '(quit)'

DOCUMENTATION.markdown: $(sourcefiles)
	sbcl --noinform --load make-docs.lisp  --eval '(quit)'

docs: DOCUMENTATION.markdown