mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-27 01:02:15 +05:30
Pranav Jerry
f55fc74ad4
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
15 lines
251 B
Makefile
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
|