2017-04-12 08:24:42 +08:00
|
|
|
# Settings that the LAMMPS build will import when this package library is used
|
|
|
|
# See the README file for more explanation
|
|
|
|
|
2017-04-14 23:57:53 +08:00
|
|
|
python_SYSINC = $(shell which python3-config > /dev/null 2>&1 && python3-config --includes || (which python-config > /dev/null 2>&1 && python-config --includes || :))
|
|
|
|
python_SYSLIB = $(shell which python3-config > /dev/null 2>&1 && python3-config --ldflags || (which python-config > /dev/null 2>&1 && python-config --ldflags || :))
|
2017-04-12 08:24:42 +08:00
|
|
|
python_SYSPATH =
|
2017-04-14 23:44:36 +08:00
|
|
|
PYTHON=$(shell which python3 > /dev/null 2>&1 && echo python3 || echo python)
|