pybatmesh/Makefile
Pranav Jerry f55fc74ad4
added PYTHON variable in Makefile
This should be used if the python executable is not python3 in your
distro.

I would like to express my displeasure to the Government of India for
not including me in the list of targets for Pegasus, even though I'm
convinced I am a threat to the sovereignty and integrity of the nation
2021-08-01 16:58:48 +05:30

15 lines
251 B
Makefile

# This makefile uses setup.py under the hood
PYTHON := python3
DESTDIR:= /
all: build
build:
$(PYTHON) setup.py build
install: build
$(PYTHON) setup.py install --root="$(DESTDIR)" --optimize=1 --skip-build
clean:
rm -rf build naxalnet.egg-info