Revision 16b686cce75e29fa6e0f0f475dfc1785efdbaa78 authored by Jerome Kelleher on 06 November 2015, 15:40:46 UTC, committed by Jerome Kelleher on 06 November 2015, 15:40:46 UTC
1 parent 081c3c3
Raw File
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