Bettern cmap handling. Lots of changes.

This commit is contained in:
2026-08-17 23:06:23 +02:00
parent 8997f7f94a
commit 12f1ed2764
27 changed files with 10351 additions and 217 deletions
+27
View File
@@ -0,0 +1,27 @@
#lang rash
(require rash-coreutils
rash-makefile
rash-git-cli)
(makefile racket-wiki
(target all
(displayln "Use (make clean), (make ver), (make zip), etc."))
(target ver
(displayln (git* next-version)))
(target zip
(deps clean)
(zip-package #:exclude '("wiki-data")))
(target clean
(for-each (λ (f) (displayln f) (rm-f f)) (list-files "." #px"([.]bak|~)$" #:recursive #t))
(for-each (λ (d) (displayln d) (rm-rf d)) (list-dirs "." #px"(compiled|doc|docs)$" #:recursive #t))
(for-each (λ (f) (displayln f) (rm-f f)) (list-files "scrbl" #px"[.](css|js|html)$"))
)
)