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