Revision 795b335ddff49021344f72de275ab5a213e155a0 authored by Jerome Kelleher on 14 January 2016, 10:08:59 UTC, committed by Jerome Kelleher on 14 January 2016, 10:08:59 UTC
1 parent 8ac0de7
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