From 8311652d6cb54865685005eb3516f5c235467076 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Tue, 11 Aug 2026 16:04:18 +0200 Subject: [PATCH] Makefile added windows switch --- Makefile.rkt | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Makefile.rkt b/Makefile.rkt index 2555e44..780dfc4 100644 --- a/Makefile.rkt +++ b/Makefile.rkt @@ -16,9 +16,20 @@ (deps clean) (zip-package)) +(target housekeeping + (displayln "Committing changes for:") + (dgit 'status) + (displayln "Adding...") + (dgit 'add '-A) + (displayln "Committing...") + (dgit 'commit (git-prompt)) + (displayln "Pushing...") + (dgit 'push) + ) + + (target windows - (displayln "does nothing yet")) - ;(git 'add '-A) - ;(git 'commit - ;(git 'switch " + (deps housekeeping) + (displayln "Switching...to x86_64-win32") + (dgit 'switch "x86_64-win32")) \ No newline at end of file