Update Makefile

Fixes python3 not found when running make on windows
This commit is contained in:
Ricca665 2024-03-17 14:47:11 +01:00 committed by d0k3
parent 26990ca23a
commit dab90a9162

View File

@ -27,7 +27,7 @@ ifeq ($(OS),Windows_NT)
ifeq ($(TERM),cygwin)
PY3 := py -3 # Windows / CMD/PowerShell
else
PY3 := python3 # Windows / MSYS2
PY3 := py # Windows / MSYS2
endif
else
PY3 := python3 # Unix-like