https://github.com/pysal/pysal
Raw File
Tip revision: 2a9218feb81880dd8e00100f4619fd4316f28c36 authored by Levi John Wolf on 18 July 2018, 19:04:02 UTC
Merge pull request #1051 from ljwolf/master
Tip revision: 2a9218f
Makefile
# developer Makefile for repeated tasks
# 
.PHONY: clean

test:
	nosetests 

doctest:
	cd doc; make pickle; make doctest

install:
	python setup.py install >/dev/null

src:
	python setup.py sdist >/dev/null

win:
	python setup.py bdist_wininst >/dev/null

clean: 
	find . -name "*.pyc" -exec rm '{}' ';'
	find pysal -name "__pycache__" -exec rm -rf '{}' ';'
	rm -rf dist
	rm -rf build
	rm -rf PySAL.egg-info
back to top