makefile-targets and some other meta info functions added

This commit is contained in:
2026-08-18 02:15:33 +02:00
parent a21f4a4a39
commit 635d2d40d1
13 changed files with 538 additions and 251 deletions
+5 -5
View File
@@ -2,14 +2,14 @@
(require racket-makefile)
(makefile cleanup-example
(default-target all)
(phony all clean)
(makefile 'cleanup-example
(default-target 'all)
(phony 'all 'clean)
(target all
(target 'all
(displayln "use (make 'clean)"))
(target clean
(target 'clean
(display "cleaning up...")
(apply rm-rf
(list-dirs "." #px"compiled$" #:recursive #t))