import lisp-programs, start working on picocalc editor

This commit is contained in:
2025-05-01 17:36:07 -07:00
parent 86411d214d
commit c69cb88e90
18 changed files with 1668 additions and 49 deletions

31
docs/Makefile Normal file
View File

@@ -0,0 +1,31 @@
TEXI := ulisp.texi
OUTPUTS := ulisp.pdf ulisp.info ulisp.html
.PHONY: all
all: $(OUTPUTS)
.PHONY: pdf
pdf: ulisp.pdf
ulisp.pdf: ulisp.texi
texi2pdf ulisp.texi
.PHONY: info
info: ulisp.info
ulisp.info: ulisp.texi
makeinfo ulisp.texi
.PHONY: html
html: ulisp.html
ulisp.html: ulisp.texi
texi2any --html --no-split ulisp.texi
ulisp_html: ulisp.texi
texi2any --html ulisp.texi
.PHONY: clean
clean:
rm -f *.aux *.cp* *.log *.toc $(OUTPUTS)
rm -fr ulisp_html