summaryrefslogtreecommitdiff
path: root/sa-extract/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sa-extract/Makefile')
-rw-r--r--sa-extract/Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/sa-extract/Makefile b/sa-extract/Makefile
index 7b39ae4d..3145bbfe 100644
--- a/sa-extract/Makefile
+++ b/sa-extract/Makefile
@@ -1,17 +1,11 @@
-PYVER=python2.7
-PYDIR=/usr/local/Cellar/python/2.7.2
-PYINCLUDE=$(PYDIR)/include/$(PYVER)
-CYTHON=/usr/local/share/python/cython
-PYTHON=$(PYDIR)/bin/python
-
%.c: %.pyx
- $(CYTHON) $< -o $@
+ cython $< -o $@
%.o: %.cc
g++ -O6 -g -fPIC -c $<
all: cstrmap.c strmap.cc rule.c sym.c cdat.c cintlist.c cfloatlist.c calignment.c csuf.c clex.c rulefactory.c cveb.c lcp.c precomputation.c
- $(PYTHON) setup.py build
+ python setup.py build
clean:
rm -f cdat.c cstrmap.c sym.c rule.c cintlist.c cfloatlist.c calignment.c csuf.c clex.c rulefactory.c cveb.c lcp.c precomputation.c *.so *.o *.cxx *~ *.pyc