Lecture 14 Objectives


At the end of today's class you should

KNOW:

BE ABLE TO:

Sample Exam Question:

Create a makefile for a program that has two header files (board.h and useful.h), and three source files (board.c, useful.c, and game.c). The source files contain these include directives:

board.c:   #include "board.h"
           #include "useful.h"


useful.c:  #include "useful.h"


game.c:    #include "board.h"
           #include "useful.h"
(Hint: draw a dependency diagram first)