##// END OF EJS Templates
Change string handling, some debug stuff
Change string handling, some debug stuff

File last commit:

r57:ab1453cd default
r58:2f85fb42 default
Show More
Makefile
50 lines | 956 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
Document building with Roswell
r57 BLACK := $(shell tput setaf 0)
RED := $(shell tput setaf 1)
GREEN := $(shell tput setaf 2)
YELLOW := $(shell tput setaf 3)
LIGHTPURPLE := $(shell tput setaf 4)
PURPLE := $(shell tput setaf 5)
BLUE := $(shell tput setaf 6)
WHITE := $(shell tput setaf 7)
RESET := $(shell tput sgr0)
Working Linux build, some CLI improvements
r44 all: $(BIN)
Document building with Roswell
r57 run:
bin/${SCRIPT}
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
Document building with Roswell
r57 @echo
@echo "* ${GREEN}Building ${YELLOW}${BIN} ${GREEN}binary${RESET}..."
Build with roswell
r55 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/*
Document building with Roswell
r57 @echo
@echo "* ${GREEN}Packaging${RESET}..."
Localization. Renamed to txt2web
r46 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
Document building with Roswell
r57 .PHONY: all run graphs clean clean-cache fresh