##// END OF EJS Templates
Build with roswell
Build with roswell

File last commit:

r55:9d4e6d28 default
r55:9d4e6d28 default
Show More
Makefile
32 lines | 473 B | text/x-makefile | MakefileLexer
BIN = txt2web
DIST = $(BIN).tar.xz
SCRIPT = $(BIN).ros
all: $(BIN)
dist: $(DIST)
graphs: diagrams.png
$(BIN): bin/$(BIN)
ln -f $<
bin/$(BIN): *.asd src/*.lisp src/*.ps strings/*.sexp bin/$(BIN).ros
ros build bin/$(SCRIPT)
%.png: %.dot
dot $< -T png -o $@
$(DIST): $(BIN) extras/*
tar cfvJ $@ $< extras
clean:
rm -f $(BIN) bin/$(BIN) $(DIST)
clean-cache:
-rm -rf ~/.cache/common-lisp
fresh: clean clean-cache all
.PHONY: all graphs clean clean-cache fresh