https://github.com/tskit-dev/msprime
Raw File
Tip revision: 448aba1632d9c4b2971eb45cf82f4cab3b7ddde0 authored by Jerome Kelleher on 19 March 2015, 15:40:11 UTC
Bumped version and improved metadata.
Tip revision: 448aba1
Makefile
# simple makefile for development.

SRC=_msprimemodule.c

ext2: ${SRC}
	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 *.py lib/*.[c,h] msprime/*.py tests/*.py
back to top