From 30ea740b60be37e551deb4d0157595f0bea277a2 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 30 Jul 2015 15:21:28 +0200 Subject: initial commit --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4531139 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 -- cgit v1.2.3