From 0e81d872502c86f061cf9003b77ac5b0abdabcba Mon Sep 17 00:00:00 2001 From: Michael Abed Date: Sun, 12 Feb 2012 15:11:25 -0500 Subject: finish renaming --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 69b5a6e..cce7ed3 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ -all: problem1 problem2 problem3 +all: Q1 Q2 Q3 -problem1: problem1.cpp - g++ -o problem1 problem1.cpp +Q1: Q1.cpp + g++ -o Q1 Q1.cpp -problem2: problem2.cpp - g++ -o problem2 problem2.cpp +Q2: Q2.cpp + g++ -o Q2 Q2.cpp -problem3: problem3.cpp - g++ -o problem3 problem3.cpp +Q3: Q3.cpp + g++ -o Q3 Q3.cpp clean: - rm problem1 problem2 problem3 + rm Q1 Q2 Q3 -- cgit v1.2.3-54-g00ecf