Makefile
changeset 45898 4f6816e8440b
parent 45835 f38d592f871a
child 45967 d9a05b11904d
equal deleted inserted replaced
45897:063cf294d5e0 45898:4f6816e8440b
     6 
     6 
     7 export PREFIX=/usr/local
     7 export PREFIX=/usr/local
     8 
     8 
     9 # Default to Python 3.
     9 # Default to Python 3.
    10 #
    10 #
    11 # Windows ships Python 3 as `python.exe`.
    11 # Windows ships Python 3 as `python.exe`, which may not be on PATH.  py.exe is.
    12 ifeq ($(OS),Windows_NT)
    12 ifeq ($(OS),Windows_NT)
    13 PYTHON?=python
    13 PYTHON?=py -3
    14 else
    14 else
    15 PYTHON?=python3
    15 PYTHON?=python3
    16 endif
    16 endif
    17 
    17 
    18 PYOXIDIZER?=pyoxidizer
    18 PYOXIDIZER?=pyoxidizer