diff options
author | Michael Abed <michaelabed@gmail.com> | 2012-02-12 14:59:45 -0500 |
---|---|---|
committer | Michael Abed <michaelabed@gmail.com> | 2012-02-12 14:59:45 -0500 |
commit | d3ca38be90bd3def29e5bd0afedbd3f6b5dc7e3f (patch) | |
tree | 94504ea00b97bfbb521830510809c9c8359af5dc /Makefile | |
parent | 76b977d44a517c2f7aade04a45093c5d150ee05b (diff) | |
download | ec327-lab1-d3ca38be90bd3def29e5bd0afedbd3f6b5dc7e3f.tar.gz ec327-lab1-d3ca38be90bd3def29e5bd0afedbd3f6b5dc7e3f.tar.bz2 ec327-lab1-d3ca38be90bd3def29e5bd0afedbd3f6b5dc7e3f.zip |
solve problem3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ -all: problem1 problem2 +all: problem1 problem2 problem3 problem1: problem1.cpp g++ -o problem1 problem1.cpp @@ -7,5 +7,8 @@ problem1: problem1.cpp problem2: problem2.cpp g++ -o problem2 problem2.cpp +problem3: problem3.cpp + g++ -o problem3 problem3.cpp + clean: - rm problem1 problem2 + rm problem1 problem2 problem3 |