dependencies and makefile

This commit is contained in:
2026-08-18 11:42:40 +02:00
parent 1d546c3d6f
commit 49ff1ad354
2 changed files with 7 additions and 6 deletions
+6 -6
View File
@@ -1,13 +1,13 @@
#lang rash
(require racket-makefile/rash)
(require rash-makefile)
(makefile rash-coreutils
(makefile 'rash-coreutils
(target all
(target 'all
(displayln "Use make clean, make zip, etc."))
(target clean
(target 'clean
(for-each (λ (f) (displayln f) (rm-f f))
(list-files "." #px"([.]bak|~)$" #:recursive #t))
(for-each (λ (d) (displayln d) (rm-rf d))
@@ -17,8 +17,8 @@
(for-each (λ (f) (displayln f) (rm-f f))
(list-files "scrbl" #px"[.](css|js|html)$")))
(target zip
(deps clean)
(target 'zip
(deps 'clean)
(zip-package))
)
+1
View File
@@ -17,4 +17,5 @@
'("racket-doc"
"rackunit-lib"
"scribble-lib"
"linea"
"rash"))