Python C extension to compute the permanent.
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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)
|