aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a057166..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-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 *.pyc