swh:1:snp:300923221fcf626df34df8c763b7994a14d9c907
Raw File
Tip revision: ca3f73002e9713d20d4e1534423a4fba1439be36 authored by Jerome Kelleher on 29 May 2020, 14:31:10 UTC
Fix OOA example in tutorial.
Tip revision: ca3f730
Makefile
# simple makefile for development.

SRC=_msprimemodule.c

ext3: ${SRC}
	python3 setup.py build_ext --inplace

allchecks: ${SRC}
	CFLAGS="-std=c99 -Wall -Wextra -Werror -Wno-unused-parameter -Wno-missing-field-initializers -Wno-cast-function-type" \
	python3 setup.py build_ext --inplace

ext3-coverage: ${SRC}
	rm -fR build
	CFLAGS="-coverage" python3 setup.py build_ext --inplace

figs:
	cd docs/asy && make 

docs: ext3 figs 
	cd docs && make clean && make html
	
tags:
	ctags -f TAGS *.c lib/*.[c,h] msprime/*.py tests/*.py

clean:
	rm -fR build
	rm -f *.o *.so
back to top