aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/python/Makefile b/python/Makefile
index bfd33b13..5985dd46 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -2,13 +2,16 @@ CFLAGS=-O2 -march=native -fpic
LDLIBS=-lm -llapack
LDFLAGS=-fpic -shared
-GHquad.so: GHquad.o
- $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS)
-
tests:
cd tests; \
python -m unittest discover -v
+tags:
+ ctags -e -R .
+
+GHquad.so: GHquad.o
+ $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS)
+
clean:
rm -f GHquad.o GHquad.so