To submit your project do the followinig: 1) Download the file called Makefile.tar that is available from this Web page. 2) Copy the file Makefile.tar to the directory in which you have all the file for this project. For example, if your directory for the project is called p1, then you can do something like this. Ex. [manuel@china] ~ >> cp Makefile.tar p1 3) Untar the Makefile.tar. This will replace the old Makefile with an updated one. The command will be: tar -xvf Makefile.tar Ex. [manuel@china] ~/p1 >> tar -xvf Makefile.tar 4) Type the command: make sdir This will automatically create a tar file with your name, and it will add to it a directory with the following files: - vector.cc - polynomial.cc - polymain2.cc For example, this command will work as follows: [manuel@china] ~/p1 make sdir /bin/rm -rf manuel mkdir manuel cp vector.cc polynomial.cc polymain*.cc manuel tar -cvf manuel.tar manuel manuel/ manuel/vector.cc manuel/polynomial.cc manuel/polymain.cc manuel/polymain2.cc All the lines after [manuel@china] ~/p1 make sdir are the output that the script is giving you to inform about what it is doing. 5) Submit your project as follows command: make submit. This will send the tar file to me. For example, this command will work as follows: [manuel@china] ~/p1 >> make submit /home/profs/manuel/bin/submit 1 manuel.tar Fri Oct 5 10:32:40 2001 The program "manuel.tar" has been successfully submitted for user manuel. All the lines after [manuel@china] ~/p1 >> make submit are the output that the script is giving you to inform about what it is doing. This is your evidence that you submitted the project!