mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-09 22:45:56 +00:00
9 lines
333 B
Makefile
9 lines
333 B
Makefile
# By default, Graphene runs the system Python 3.5 executable.
|
|
PYTHONVERSION ?= python3.5
|
|
PYTHONPATH ?= /usr
|
|
|
|
PYTHONHOME := $(PYTHONPATH)/lib/$(PYTHONVERSION)
|
|
PYTHONEXEC := $(PYTHONPATH)/bin/$(PYTHONVERSION)
|
|
PYTHONDISTHOME := $(PYTHONPATH)/lib/python3/dist-packages
|
|
PYTHONSHORTVERSION := $(subst python,,$(subst .,,$(PYTHONVERSION)))
|