2 Commits

Author SHA1 Message Date
hans b534917ae3 Switch to windows added. 2026-08-11 16:06:28 +02:00
hans 8311652d6c Makefile added windows switch 2026-08-11 16:04:18 +02:00
+18 -5
View File
@@ -16,9 +16,22 @@
(deps clean)
(zip-package))
(target windows
(displayln "does nothing yet"))
;(git 'add '-A)
;(git 'commit
;(git 'switch "
(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"))