For this assignment, you will:
CC = cc
CFLAGS = -g
all: c2f
$(CC) -o c2f c2f.o
c2f: c2f.o
c2f.o: c2f.c
When you type make in this directory, your program will be automatically
compiled using the instructions in the Makefile, which say
to use the cc compiler with the -g option (for debugging),
and call the resulting executable c2f. (It may seem a little silly
to go through all this when one could simply invoke cc from the
command line, but once we start compiling programs with many different
C files, cc by itself becomes very cumbersome.)
This assignment is due at midnight on Monday, February 3, 1997.