From d3ca38be90bd3def29e5bd0afedbd3f6b5dc7e3f Mon Sep 17 00:00:00 2001 From: Michael Abed Date: Sun, 12 Feb 2012 14:59:45 -0500 Subject: solve problem3 --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fd70bc0..69b5a6e 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3-54-g00ecf