BIN = txt2web DIST = $(BIN).tar.xz all: $(BIN) dist: $(DIST) graphs: diagrams.png $(BIN): *.asd src/*.lisp src/*.ps strings/*.sexp sbcl --load build.lisp -- $(BIN) %.png: %.dot dot $< -T png -o $@ $(DIST): $(BIN) extras/* tar cfvJ $@ $< extras clean: rm -f $(BIN) $(DIST) clean-cache: -rm -rf ~/.cache/common-lisp fresh: clean clean-cache all .PHONY: all graphs clean clean-cache fresh