We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e6016 commit 962c4bfCopy full SHA for 962c4bf
source-code/cython/Primes/.gitignore
@@ -1 +1,3 @@
1
primes_cython.c
2
+primes_cython3.c
3
+primes_pure_python.c
source-code/cython/Primes/Makefile
@@ -1,5 +1,6 @@
VERSION = cpython-311-x86_64-linux-gnu
-PRIMES_LIBS = primes_cython.$(VERSION).so primes_pure_python.$(VERSION).so
+PRIMES_LIBS = primes_cython.$(VERSION).so primes_cython3.$(VERSION).so \
+ primes_pure_python.$(VERSION).so
4
5
all: $(PRIMES_LIBS)
6
@@ -8,5 +9,5 @@ $(PRIMES_LIBS): primes_cython.pyx primes_pure_python.py
8
9
10
clean:
11
python setup.py clean
- $(RM) primes_cython.c primes_pure_python.c $(PRIMES_LIBS)
12
+ $(RM) primes_cython.c primes_cython3.c primes_pure_python.c $(PRIMES_LIBS)
13
$(RM) -r build/
0 commit comments