diff options
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fd70bc0 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +all: problem1 problem2 + +problem1: problem1.cpp + g++ -o problem1 problem1.cpp + +problem2: problem2.cpp + g++ -o problem2 problem2.cpp + +clean: + rm problem1 problem2 |