CIS 4930 Section 0998X

Object-Oriented Programming

Submitting Programming Projects

Prepare the code for a programming project in a directory which has the same name as the programming project. (Yes case is important!)

This directory must be self-contained and provide all files necessary to make a working version of the project. It must contain a project Makefile as well, which makes as its target, a program with the same name as the assignment.

When you have completely tested the assignment, tar the directory containing the program into a file with the same name as the assignment, followed by the filename extension .tar then execute the program /cis/class/cis4930/0998/jnw/bin/submit with the tar file as the argument. Here's an example:

% ls Asst1 % ls Asst1 Makefile counter.c counter.h timer.c % tar cvf Asst1.tar Asst1 a Asst1/Makefile 1 blocks a Asst1/timer.c 1 blocks a Asst1/counter.c 1 blocks a Asst1/counter.h 1 blocks % ls Asst1 Asst1.tar % /cis/class/cis4930/0998/jnw/bin/submit Asst1.tar Asst1.tar copied %