changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: sbcl-install rule

changeset 26: 319d5d0c5178
parent 25: 30fa758d74b7
child 27: 2da284269dc1
author: ellis <ellis@rwest.io>
date: Sun, 24 Dec 2023 13:52:01 -0500
files: makefile
description: sbcl-install rule
     1.1--- a/makefile	Sun Dec 24 13:37:49 2023 -0500
     1.2+++ b/makefile	Sun Dec 24 13:52:01 2023 -0500
     1.3@@ -62,7 +62,8 @@
     1.4 
     1.5 ### SBCL
     1.6 SBCL_TARGET:=build/src/sbcl-$(SBCL_VERSION)
     1.7-sbcl:scripts/get-sbcl.sh $(B);
     1.8+
     1.9+$(SBCL_TARGET):scripts/get-sbcl.sh $(B);
    1.10 	$< $(SBCL_VERSION)
    1.11 	cd $(SBCL_TARGET) && \
    1.12 	echo '"2.3.12+main"' > version.lisp-expr && \
    1.13@@ -74,6 +75,8 @@
    1.14 	  --dynamic-space-size=4Gb \
    1.15 	  --fancy && \
    1.16 	cd doc/manual && make
    1.17+sbcl:$(SBCL_TARGET)
    1.18+sbcl-install:sbcl;$(SBCL_TARGET)/install.sh
    1.19 clean-sbcl:;rm -rf $(SBCL_TARGET)
    1.20 
    1.21 ### Rust