.PHONY: site all clean

all: site

site: 
	lisp -init `pwd`/make.lisp

clean:
	@rm -f *~ \#*\# .\#* memdump

