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ů.

22 řádky
294B

  1. srcdir = src
  2. objdir = ./
  3. target = permanent.so
  4. setup = setup.py
  5. default : $(target) test
  6. # Compile
  7. $(target): $(srcdir)/*
  8. python $(setup) build_ext --inplace
  9. test :
  10. python ./run-tests.py
  11. clean :
  12. @ rm permanent.so
  13. @ rm -rf build
  14. tar :
  15. @ tar czf permanent.tar.gz $(srcdir) $(utils)