##// END OF EJS Templates
Bugfixes
Bugfixes

File last commit:

r50:4530ce7b default
r51:cdf03d3e default
Show More
Makefile
39 lines | 586 B | text/x-makefile | MakefileLexer
Tutorial game works!
r6
Localization. Renamed to txt2web
r46 BIN = txt2web
Remove buildapp
r50 DIST = $(BIN).tar.xz
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
Remove buildapp
r50 sbcl --load build.lisp -- $(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:
Rename system to txt2web
r49 -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