##// END OF EJS Templates
Actually fix it
Actually fix it

File last commit:

r53:a5523508 default
r53:a5523508 default
Show More
Makefile
28 lines | 402 B | text/x-makefile | MakefileLexer
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