First import of rash-makefile

This commit is contained in:
2026-08-17 21:42:02 +02:00
parent ba34698037
commit 0c47f0169f
8 changed files with 226 additions and 14 deletions
+17
View File
@@ -0,0 +1,17 @@
#lang rash
(require rash-makefile)
(makefile demo
(default-target status)
(phony status clean all)
(target status
(displayln "status target"))
(target clean
(displayln "clean target"))
(target all
(deps status)
(displayln "all target")))