##// END OF EJS Templates
Localized and neat error reports
Localized and neat error reports

File last commit:

r53:a5523508 default
r54:3a4e62f8 default
Show More
Makefile
28 lines | 402 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
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
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
Remove qlot
r52 clean-cache:
-rm -rf ~/.cache/common-lisp
Working Linux build, some CLI improvements
r44
Remove qlot
r52 fresh: clean clean-cache all
Actually fix it
r53 .PHONY: all graphs clean clean-cache fresh