diff options
author | Michael Abed <michaelabed@gmail.com> | 2012-02-12 14:28:23 -0500 |
---|---|---|
committer | Michael Abed <michaelabed@gmail.com> | 2012-02-12 14:28:23 -0500 |
commit | 91fad6c8078266478d9aad1a1dacae5631becb0e (patch) | |
tree | d67a97fb6b607acfee14cb46daeabc41ab998114 | |
parent | 7e042c9ee5ae2b1160ab1d2a01e46246a2321bd4 (diff) | |
download | ec327-lab1-91fad6c8078266478d9aad1a1dacae5631becb0e.tar.gz ec327-lab1-91fad6c8078266478d9aad1a1dacae5631becb0e.tar.bz2 ec327-lab1-91fad6c8078266478d9aad1a1dacae5631becb0e.zip |
write a makefile
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fd70bc0 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +all: problem1 problem2 + +problem1: problem1.cpp + g++ -o problem1 problem1.cpp + +problem2: problem2.cpp + g++ -o problem2 problem2.cpp + +clean: + rm problem1 problem2 |