##// END OF EJS Templates
Adapted README to RhodeCode's MD renderer
Adapted README to RhodeCode's MD renderer

File last commit:

r46:b7997ef3 default
r48:d8716915 default
Show More
Makefile
46 lines | 709 B | text/x-makefile | MakefileLexer
BIN = txt2web
PKG = $(BIN)
DIST = txt2web.tar.xz
LISP = sbcl
all: $(BIN)
dist: $(DIST)
graphs: diagrams.png
$(BIN): *.asd src/*.lisp src/*.ps strings/*.sexp
buildapp.$(LISP) --asdf-path .\
--asdf-tree .qlot/dists\
--load-system $(PKG)\
--entry $(PKG):entry-point\
--output $(BIN)
install-deps:
sbcl --load install-deps.lisp
update-deps:
sbcl --load update-deps.lisp
%.png: %.dot
dot $< -T png -o $@
$(DIST): $(BIN) extras/*
tar cfvJ $@ $< extras
upload: $(DIST)
curl --upload-file $(DIST) https://transfer.sh/$(DIST)
@echo
distclean: clean clean-deps
clean:
rm -f $(BIN) $(DIST)
clean-deps:
rm qlfile.lock
rm -rf .qlot
.PHONY: all graphs install-deps update-deps clean upload