CMSC-341, Spring 1999 23 February 1999 A few notes on projects: 1) Please be sure that you name your project executables correctly. Each project's executable must be named after the project. So, Project Executable Name 1 Proj1 2 Proj2 3 Proj3 4 Proj4 5 Proj5 No other executable names are allowed. The grader will look for these names. If you name your executable other than the above, the grader will not be able to find it. 2) Please be sure that your makefile works. A non-working makefile means the grader cannot compile your project. Having a makefile should be a great convenience for you. It also gives you the freedom to have as many files as you wish, named as you wish (except for the executable). 3) The preferred file extensions for your source files are .C and .H You may also use .cc .cpp and .h if you wish. 4) For all projects, starting with Project 2, compilation must be done using the flags -n32 -pta If you wish, you may add the flag -g For example, to compile the file Foo.C to obtain the file Foo.o, do CC -n32 -pta -c Foo.C or CC -n32 -pta -g -c Foo.C