aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2015-07-31 16:25:39 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2015-07-31 16:25:39 +0200
commit4f2f84ac3884f80b4f753b924ba2ed2017c23e2b (patch)
treee520351de029adc2f5c7b9bc31b4056474460291 /Makefile
parentreformat to proper python and R packages (diff)
downloadSyncRNG-4f2f84ac3884f80b4f753b924ba2ed2017c23e2b.tar.gz
SyncRNG-4f2f84ac3884f80b4f753b924ba2ed2017c23e2b.zip
remove deprecated Makefile and add install instructions in README
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