##// 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
Tutorial game works!
r6
Localization. Renamed to txt2web
r46 BIN = txt2web
Remove buildapp
r50 DIST = $(BIN).tar.xz
Build with roswell
r55 SCRIPT = $(BIN).ros
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
Build with roswell
r55 $(BIN): bin/$(BIN)
ln -f $<
bin/$(BIN): *.asd src/*.lisp src/*.ps strings/*.sexp bin/$(BIN).ros
ros build bin/$(SCRIPT)
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:
Build with roswell
r55 rm -f $(BIN) bin/$(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