Several students have come with questions regarding the usage and construction of makefiles. Here are Nick's answers.
Answer:
The lines that are indented in the Makefile should be indented with a tab character, not 8 spaces. Sometimes, through a file transfer, tabs and spaces are interchanged, which will cause your problem. So, edit your Makefile and change each set of leading spaces to a single tab.
Answer:
To use the object files, just place those object files in the directory where you're working and type 'make'. To ensure that these object files are used, you need to make sure these files have a later date/time than their corresponding source files (.c and .h). Type 'ls -l' to find out what the date/time is. You may have to type 'touch *.o' to force the object files to have the current date/time.