diff options
Diffstat (limited to 'python-func/Makefile')
| -rw-r--r-- | python-func/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/python-func/Makefile b/python-func/Makefile new file mode 100644 index 0000000..9c2a0c3 --- /dev/null +++ b/python-func/Makefile @@ -0,0 +1,23 @@ +task8: + python3 task8.py +test8: + @printf "" | python3 task8.py + @printf "Answer: \n" + +task10: + python3 task10.py +test10: + @printf "" | python3 task10.py + @printf "Answer: \n" + +task11: + python3 task11.py +test11: + @printf "" | python3 task11.py + @printf "Answer: \n" + +clean: + rm -f *.zip + +archive: clean + zip archive.zip *.py |