aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/Makefile b/python/Makefile
index a0658eaa..507c788b 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -1,7 +1,3 @@
-CFLAGS=-O2 -march=native -fpic
-LDLIBS=-lm -llapack
-LDFLAGS=-fpic -shared
-
tests:
cd tests; \
python -m unittest discover -v
@@ -9,10 +5,7 @@ tests:
tags:
ctags -e --python-kinds=-iv --exclude='*.js' -R .
-GHquad.so: GHquad.o
- $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS)
clean:
- rm -f GHquad.o GHquad.so
.PHONY: clean tests