changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: x commands - next need to fix reqs/target for rules

changeset 318: 45e8ea15c0fe
parent 317: 1f14280be401
child 319: c5956756f9e5
author: Richard Westhaver <ellis@rwest.io>
date: Wed, 08 May 2024 21:47:18 -0400
files: skelfile
description: x commands - next need to fix reqs/target for rules
     1.1--- a/skelfile	Wed May 08 21:34:08 2024 -0400
     1.2+++ b/skelfile	Wed May 08 21:47:18 2024 -0400
     1.3@@ -12,9 +12,19 @@
     1.4 :scripts "x.lisp"
     1.5 :rules
     1.6 ((box () #$podman build . --build-arg IMAGE=localhost/box -t core$#)
     1.7+ (x () #$./x.lisp$#)
     1.8  (clean ()
     1.9         #$rm -vrf .stash$#
    1.10         #$find emacs -name '*.elc' -type f -delete$#
    1.11         #$find lisp -name '*.fasl' -type f -delete$#
    1.12         #$echo 'cargo clean:' && cd rust && cargo clean$#)
    1.13+ (rdb (x) #$./x build rdb$#)
    1.14+ (skel (x) #$./x build skel$#)
    1.15+ (organ (x) #$./x build organ$#)
    1.16+ (homer (x) #$./x build homer$#)
    1.17+ (packy (x) #$./x build packy$#)
    1.18+ (build (x) #$./x build$#)
    1.19+ (install (x) #$./x install$#)
    1.20+ (std (x) #$./x save std$#)
    1.21+ (prelude (x) #$./x save prelude$#)
    1.22  (deploy () #$mv .stash/{prelude.core,std.core} $PACKY_DIR$#))