Added makefile.rkt

This commit is contained in:
2026-08-09 00:32:36 +02:00
parent b563d359f0
commit 0f1c1da672
10 changed files with 181 additions and 19 deletions
+20
View File
@@ -0,0 +1,20 @@
#lang racket
(require "main.rkt"
racket/string)
(target all
(displayln "use (make clean) or (make package) or (make commit/push")
)
(target commit
(display "commit message:")
(flush-output)
(let ((line (read-line)))
(set! line (string-trim line))
(run '(git add -A))
(run (append '(git "commit" -m ) (list line))))
)