diff options
author | Michael Abed <michaelabed@gmail.com> | 2012-04-09 01:45:23 -0400 |
---|---|---|
committer | Michael Abed <michaelabed@gmail.com> | 2012-04-09 01:48:41 -0400 |
commit | 1ba0668dbcf5bc4c40d99ac963711e35797c8efa (patch) | |
tree | b359b81f4e538e923366a7c718d9defd9b823bc4 /Makefile | |
download | ec327-lab3-master.tar.gz ec327-lab3-master.tar.bz2 ec327-lab3-master.zip |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b240b26 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +Q1: MatrixMultiply.h MatrixMultiply.cpp Q1.cpp + g++ -o Q1 MatrixMultiply.cpp Q1.cpp + +Q2: Q2.cpp + g++ -o Q2 Q2.cpp + +Q3: Q3.cpp Teacher.h Teacher.cpp Course.h Course.cpp Student.h + g++ -o Q3 Teacher.cpp Course.cpp Q3.cpp |