https://github.com/kaczmarj/nobrainer
Raw File
Tip revision: 8cffeb91628b83ebec08f790992280c51e12c813 authored by Jakub Kaczmarzyk on 24 September 2018, 21:21:36 UTC
ENH: bugfixes (#31)
Tip revision: 8cffeb9
Makefile
.PHONY: all build clean-build clean-pyc clean install

PYTHON ?= python3

all: clean build

build: clean
	$(PYTHON) setup.py bdist_wheel

clean-build:
	rm -rf dist build

clean-pyc:
	find . -name "*.pyc" -type f -exec rm -f {} +
	find . -name "__pycache__" -type d -exec rm -rf {} +

clean: clean-build clean-pyc

install:
	$(PYTHON) setup.py install
back to top