summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Abed <michaelabed@gmail.com>2012-02-12 15:11:25 -0500
committerMichael Abed <michaelabed@gmail.com>2012-02-12 15:11:25 -0500
commit0e81d872502c86f061cf9003b77ac5b0abdabcba (patch)
tree4688731db12c0ff5a3a55d3b65a76087ddef0806
parent85cdcd0e5c89f0c180b63fb0293b9b8f4322d3bb (diff)
downloadec327-lab1-0e81d872502c86f061cf9003b77ac5b0abdabcba.tar.gz
ec327-lab1-0e81d872502c86f061cf9003b77ac5b0abdabcba.tar.bz2
ec327-lab1-0e81d872502c86f061cf9003b77ac5b0abdabcba.zip
finish renaming
-rw-r--r--.gitignore8
-rw-r--r--Makefile16
2 files changed, 12 insertions, 12 deletions
diff --git a/.gitignore b/.gitignore
index 16b5649..83a49fe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
-problem1
-problem2
-problem3
-problem4
+Q1
+Q2
+Q3
+Q4
*.un~
*~
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