Python C extension to compute the permanent.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- srcdir = src
- objdir = ./
-
- target = permanent.so
- setup = setup.py
-
- default : $(target) test
-
- # Compile
- $(target): $(srcdir)/permanent.c
- python $(setup) build_ext --inplace
-
- test :
- python ./run-tests.py
-
- clean :
- @ rm permanent.so
- @ rm -rf build
-
- tar :
- @ tar czf permanent.tar.gz $(srcdir) $(utils)
|