##// 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
Tutorial game works!
r6
Localization. Renamed to txt2web
r46 BIN = txt2web
PKG = $(BIN)
DIST = txt2web.tar.xz
Tutorial game works!
r6
LISP = sbcl
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
Working Linux build, some CLI improvements
r44 all: $(BIN)
Localization. Renamed to txt2web
r46 dist: $(DIST)
Working Linux build, some CLI improvements
r44 graphs: diagrams.png
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
Localization. Renamed to txt2web
r46 $(BIN): *.asd src/*.lisp src/*.ps strings/*.sexp
Tutorial game works!
r6 buildapp.$(LISP) --asdf-path .\
--asdf-tree .qlot/dists\
Localization. Renamed to txt2web
r46 --load-system $(PKG)\
--entry $(PKG):entry-point\
Tutorial game works!
r6 --output $(BIN)
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
install-deps:
sbcl --load install-deps.lisp
update-deps:
sbcl --load update-deps.lisp
Working Linux build, some CLI improvements
r44 %.png: %.dot
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 dot $< -T png -o $@
Localization. Renamed to txt2web
r46 $(DIST): $(BIN) extras/*
tar cfvJ $@ $< extras
upload: $(DIST)
curl --upload-file $(DIST) https://transfer.sh/$(DIST)
@echo
Working Linux build, some CLI improvements
r44
distclean: clean clean-deps
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 clean:
Localization. Renamed to txt2web
r46 rm -f $(BIN) $(DIST)
Working Linux build, some CLI improvements
r44
clean-deps:
Localization. Renamed to txt2web
r46 rm qlfile.lock
rm -rf .qlot
Working Linux build, some CLI improvements
r44
Localization. Renamed to txt2web
r46 .PHONY: all graphs install-deps update-deps clean upload