aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 45311397dbdc2ae12e46dab9fa1a472fbc8ac4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PYTHON=python2

.PHONY: all clean

all: R python

python:
	$(PYTHON) setup.py build_ext --inplace

R:
	R CMD SHLIB -o tausR.so taus.c

clean:
	rm -rf build
	rm -f taus.so
	rm -f tausR.so
	rm -f taus.o