aboutsummaryrefslogtreecommitdiff
path: root/windows/bin/gmake.cmd
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-23 07:30:36 +0200
committerThomas Schmucker <ts@its1.de>2026-07-23 07:30:36 +0200
commit660a005fa15e99c4aa1cef3d844a488cfde65010 (patch)
tree2a088f90fbc2e7f4b8b03ed832baea994acd315c /windows/bin/gmake.cmd
parent415ef4254291fdd1fe11211627f98e45d746697b (diff)
downloaddotfiles-660a005fa15e99c4aa1cef3d844a488cfde65010.tar.gz
dotfiles-660a005fa15e99c4aa1cef3d844a488cfde65010.tar.bz2
dotfiles-660a005fa15e99c4aa1cef3d844a488cfde65010.zip
windows: install-win.cmd, gmake.cmd und Windows-Setup-Anleitung hinzugefuegt
Eigenstaendiger, Windows-nativer Installationsweg fuer nvim/git/npm-Config (Kopieren statt Symlinks, keine Admin-Rechte noetig). install.sh und die bestehenden bootstrap-Skripte bleiben unveraendert.
Diffstat (limited to 'windows/bin/gmake.cmd')
-rw-r--r--windows/bin/gmake.cmd11
1 files changed, 11 insertions, 0 deletions
diff --git a/windows/bin/gmake.cmd b/windows/bin/gmake.cmd
new file mode 100644
index 0000000..89f3a29
--- /dev/null
+++ b/windows/bin/gmake.cmd
@@ -0,0 +1,11 @@
1@echo off
2rem Wrapper, damit opt.makeprg = "gmake" (aus nvim/lua/config/options.lua)
3rem unter Windows funktioniert, ohne die bestehende Config anzupassen.
4rem Reicht alle Argumente an das im PATH gefundene "make" weiter.
5rem
6rem Einmalig einrichten: dieses Verzeichnis (windows\bin) zum PATH
7rem hinzufuegen, z.B. ueber:
8rem setx PATH "%PATH%;%USERPROFILE%\dotfiles\windows\bin"
9
10make %*
11exit /b %ERRORLEVEL%