mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-27 01:02:15 +05:30
Pranav Jerry
7b7ce8044b
Let's see if anyone reads the comments :) Changed python to python3 in Makefile
12 lines
217 B
Makefile
12 lines
217 B
Makefile
# This makefile uses setup.py under the hood
|
|
all: build
|
|
|
|
build:
|
|
python3 setup.py build
|
|
|
|
install: build
|
|
python3 setup.py install --root="$(DESTDIR)/" --optimize=1 --skip-build
|
|
|
|
clean:
|
|
rm -rf build naxalnet.egg-info
|