summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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