File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11* .fasl
22system-index.txt
33lisp-inference
4+ docs /
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ check:
1818server :
1919 @$(SBCL_CMD ) run-server.lisp
2020
21+ docs :
22+ rm -rf docs/ || true
23+ @$(SBCL_CMD ) run-docs.lisp
24+
2125docker-build :
2226 docker build -t $(DOCKER_IMG ) .
2327
@@ -38,4 +42,4 @@ docker-publish: docker-build
3842deploy : docker-publish
3943 ssh starfox bash /home/lerax/Deploy/logic.sh
4044
41- .PHONY : check docker-build
45+ .PHONY : check docker-build docs
Original file line number Diff line number Diff line change 1+ (load " fix-quicklisp" )
2+ ; ; auto generate docs with staple
3+ (ql :quickload ' (:staple :lisp-inference ) :silent t )
4+ (staple :generate :lisp-inference :if-exists nil )
5+ (format t " Docs generated at docs/ directory.~% " )
6+ (sb-ext :exit :code 0 )
You can’t perform that action at this time.
0 commit comments