swh:1:snp:300923221fcf626df34df8c763b7994a14d9c907
Raw File
Tip revision: 3b7628b57a1ad27473312978f8b5db0afbf01086 authored by Jerome Kelleher on 01 December 2015, 16:13:12 UTC
Bumped version to 0.1.6a3
Tip revision: 3b7628b
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