Raw File
# simple makefile for development.

SRC=_msprimemodule.c

ext2: ${SRC}
	python setup.py build_ext --inplace

ext2-coverage: ${SRC}
	rm -fR build
	CFLAGS="-coverage" python setup.py build_ext --inplace

ext3: ${SRC}
	python3 setup.py build_ext --inplace

figs:
	cd docs/asy && make 

docs: ext2 figs 
	cd docs && make clean && make html

	
tags:
	ctags -f TAGS *.c lib/*.[c,h] msprime/*.py tests/*.py
back to top