diff options
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | Makefile | 16 |
2 files changed, 12 insertions, 12 deletions
@@ -1,7 +1,7 @@ -problem1 -problem2 -problem3 -problem4 +Q1 +Q2 +Q3 +Q4 *.un~ *~ @@ -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 |