summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Abed <michaelabed@gmail.com>2012-02-12 15:42:43 -0500
committerMichael Abed <michaelabed@gmail.com>2012-02-12 15:42:43 -0500
commit042acb10595161ac36b47768f7c1e58c553e6b33 (patch)
tree469bfa7f6ce25a4580169bc5c18a9de70d217970 /Makefile
parent986e3aa56c96097bb6993e48859ea6540e9ad7cc (diff)
downloadec327-lab1-master.tar.gz
ec327-lab1-master.tar.bz2
ec327-lab1-master.zip
solve problem 4HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cce7ed3..1a7e44c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-all: Q1 Q2 Q3
+all: Q1 Q2 Q3 Q4
Q1: Q1.cpp
g++ -o Q1 Q1.cpp
@@ -10,5 +10,8 @@ Q2: Q2.cpp
Q3: Q3.cpp
g++ -o Q3 Q3.cpp
+Q4: Q4.cpp
+ g++ -o Q4 Q4.cpp
+
clean:
rm Q1 Q2 Q3