# 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