Removed rash integration again and backported raco call.

This commit is contained in:
2026-08-17 21:40:48 +02:00
parent 26a0e780c5
commit a21f4a4a39
15 changed files with 716 additions and 1287 deletions
+15 -12
View File
@@ -1,15 +1,18 @@
#lang racket-makefile
#lang racket
(default-target all)
(phony all clean)
(require racket-makefile)
(target all
(displayln "use (make clean)"))
(makefile cleanup-example
(default-target all)
(phony all clean)
(target clean
(display "cleaning up...")
(apply rm-rf
(list-dirs "." #px"compiled$" #:recursive #t))
(apply rm-f
(list-files "." #px"(?i:([.]bak|~)$)" #:recursive #t))
(displayln "done."))
(target all
(displayln "use (make 'clean)"))
(target clean
(display "cleaning up...")
(apply rm-rf
(list-dirs "." #px"compiled$" #:recursive #t))
(apply rm-f
(list-files "." #px"(?i:([.]bak|~)$)" #:recursive #t))
(displayln "done.")))