15 lines
631 B
Makefile
15 lines
631 B
Makefile
# Settings that the LAMMPS build will import when this package library is used
|
|
# See the README file for more explanation
|
|
ifeq ($(shell type python3 >/dev/null 2>&1; echo $$?), 0)
|
|
PYTHON=python3
|
|
PYTHONCONFIG = python3-config
|
|
else
|
|
PYTHONCONFIG = python-config
|
|
PYTHON=python
|
|
endif
|
|
|
|
|
|
python_SYSINC = $(shell which $(PYTHONCONFIG) > /dev/null 2>&1 && $(PYTHONCONFIG) --includes || :)
|
|
python_SYSLIB = $(shell which $(PYTHONCONFIG) > /dev/null 2>&1 && $(PYTHONCONFIG) --ldflags --embed > /dev/null 2>&1 && $(PYTHONCONFIG) --ldflags --embed || (which $(PYTHONCONFIG) > /dev/null 2>&1 && $(PYTHONCONFIG) --ldflags || :) )
|
|
python_SYSPATH =
|