Files
2026-08-11 22:54:42 +02:00

47 lines
1.3 KiB
Racket

#lang racket-makefile
(require git
package-zipper)
(target all
(displayln "main branch: use (make clean) or (make package)"))
(target clean
(for-each (λ (f) (displayln f) (rm-f f)) (list-files "." #px"([.]bak|~)$" #:recursive #t))
(for-each (λ (d) (displayln d) (rm-rf d)) (list-dirs "." #px"(compiled|doc)$" #:recursive #t))
(when (directory-exists? "scrbl")
(for-each (λ (f) (displayln f) (rm-f f)) (list-files "scrbl" #px"[.](css|js|html)$")))
)
(target package
(deps clean)
(zip-package))
(target housekeeping
(displayln "Committing changes for:")
(let ((changes (git 'status)))
(when (> (length changes) 0)
(dgit 'status)
(displayln "Adding...")
(dgit 'add '-A)
(displayln "Committing...")
(dgit 'commit (git-prompt))
(displayln "Pushing...")
(dgit 'push)))
)
(target windows
(deps housekeeping)
(displayln "Switching to x86_64-win32")
(dgit 'switch "x86_64-win32"))
(target linux-x86_64
(deps housekeeping)
(displayln "Switching to x86_64-linux")
(dgit 'switch "x86_64-linux"))
(target linux
(deps linux-x86_64))