diff --git a/makefile b/makefile new file mode 100644 index 0000000000000000000000000000000000000000..8c5e969a27fb458a7dff12c03738f01ad5e5ce8b --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +.PHONY: clean pythran + +all: pythran + +pythran: + pythran rosenbrock.py -o rosenbrock_pythran.so + +clean: + rm -rf *.so *.pyf *.pyc __pycache__ + diff --git a/run_docker.sh b/run_docker.sh new file mode 100755 index 0000000000000000000000000000000000000000..d96c56eb0a12c5393f30765506f9a182c4c25bf7 --- /dev/null +++ b/run_docker.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker run -ti --rm -v $(pwd):/home/euler boileaum/pythran:latest