LISP ?= sbcl

all: truth-table

truth-table: build.lisp truth-table.lisp
	$(LISP) --load build.lisp

clean:
	rm -f truth-table

.PHONY: all clean
