aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: da2d612ad58332b783b01dc168af64062e6363d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PYTHON=python2
RLIB=RSyncRNG.so
CFILE=syncrng.c

.PHONY: all clean

all: R python

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

R:
	R CMD SHLIB -o $(RLIB) $(CFILE)

clean:
	rm -rf build
	rm -f *.so *.o
	rm *.pyc