From 63a30aad9a6a54f44bc9880a585a3ba5be95c0e2 Mon Sep 17 00:00:00 2001 From: ys554 <ys554@drexel.edu> Date: Wed, 20 Mar 2019 23:22:54 -0400 Subject: [PATCH] Upload New File --- Final_Project/makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Final_Project/makefile diff --git a/Final_Project/makefile b/Final_Project/makefile new file mode 100644 index 0000000..d4733f9 --- /dev/null +++ b/Final_Project/makefile @@ -0,0 +1,24 @@ +##### PYTHON ##### +#Yegeon Seo +#Final Project makefile + +.PHONY : build test run clean + +run : fall1617 fall1718 winter1617 winter1718 winter1819 + python3 final.py fall1617 + python3 final.py fall1718 + python3 final.py winter1617 + python3 final.py winter1718 + python3 final.py winter1819 + +build : + @# "Python Makefile" + chmod +x final.py + +view : + @\less final.py + +clean : + @\rm *.ics + + -- GitLab