Skip to content

Commit 1355f3a

Browse files
committed
common.mk - windows support
1 parent d60c03b commit 1355f3a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/common.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ PYTHON:=python3.11
22
PIP:=pip3.11
33
VERSION:=$(shell cat ../../VERSION)
44
SED:=sed -i
5+
ifeq ($(OS),Windows_NT)
6+
PYTHON:=python
7+
PIP:=pip
8+
endif
59
ifeq ($(UNAME_S),Darwin)
610
SED:=sed -i '' -e
711
PYTHON:=python3

0 commit comments

Comments
 (0)