Revision 772052e7ba53a55183f0bb9bd7ff9a4112e4e5c8 authored by Jerome Kelleher on 24 June 2016, 14:07:28 UTC, committed by Jerome Kelleher on 24 June 2016, 14:07:28 UTC
1 parent f7497c4
Raw File
Makefile
# 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