diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ -all: problem1 problem2 +all: problem1 problem2 problem3 problem1: problem1.cpp g++ -o problem1 problem1.cpp @@ -7,5 +7,8 @@ problem1: problem1.cpp problem2: problem2.cpp g++ -o problem2 problem2.cpp +problem3: problem3.cpp + g++ -o problem3 problem3.cpp + clean: - rm problem1 problem2 + rm problem1 problem2 problem3 |