aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/src/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lexilla/src/makefile')
-rw-r--r--lexilla/src/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/lexilla/src/makefile b/lexilla/src/makefile
index a8edfc1cb..4560a6d14 100644
--- a/lexilla/src/makefile
+++ b/lexilla/src/makefile
@@ -55,6 +55,8 @@ endif
# Take care of changing Unix style '/' directory separator to '\' on Windows
normalize = $(if $(windir),$(subst /,\,$1),$1)
+PYTHON = $(if $(windir),pyw,python3)
+
ifdef windir
DEL = $(if $(wildcard $(dir $(SHELL))rm.exe), $(dir $(SHELL))rm.exe -f, del /q)
else
@@ -89,7 +91,7 @@ analyze:
$(CXX) --analyze $(DEFINES) $(INCLUDES) $(BASE_FLAGS) $(CXXFLAGS) *.cxx ../../lexlib/*.cxx ../../lexers/*.cxx
depend deps.mak:
- python DepGen.py
+ $(PYTHON) DepGen.py
LEXERS:=$(sort $(notdir $(wildcard ../../lexers/Lex*.cxx)))