pybatmesh/Makefile

15 lines
251 B
Makefile
Raw Normal View History

# This makefile uses setup.py under the hood
PYTHON := python3
DESTDIR:= /
all: build
2021-05-10 11:45:42 +02:00
build:
$(PYTHON) setup.py build
install: build
$(PYTHON) setup.py install --root="$(DESTDIR)" --optimize=1 --skip-build
2021-07-26 09:14:24 +02:00
clean:
rm -rf build naxalnet.egg-info