mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2025-01-05 22:43:47 +05:30
12 lines
215 B
Makefile
12 lines
215 B
Makefile
# This makefile uses setup.py under the hood
|
|
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
|