Assigned | Monday January 27, 2003 |
Due | anytime |
Your task is to submit a small project with a makefile. After submitting it, you will run submitmake and submitrun. If you can do all this, relax. If you can't do it, please email Mr. Frey (frey@cs.umbc.edu) from your gl account. Describe what went wrong. Include any error messages that were displayed.
Here are your tasks:
#include <iostream> using namespace std; int main() { cout << "Hello World" << endl; }
Proj0: /usr/local/bin/g++ -ansi -Wall -o Proj0 Proj0.C
Example:
submit cs341 Proj0 Proj0.C Makefile
You should get a friendly message stating that the files were
submitted ok.
Example:
submitls cs341 Proj0
You should see a listing of the directory showing the two files you
submitted.
/afs/umbc.edu/users/d/e/dennis/pub/CMSC341/submitmake cs341 Proj0You should get a simple report from the make utility.
/afs/umbc.edu/users/d/e/dennis/pub/CMSC341/submitrun cs341 Proj0You should see the output from the HelloWorld program.