For this assignment, you will:
CC = cc CFLAGS = -g all: f2c $(CC) -o f2c f2c.o f2c: f2c.o f2c.o: f2c.cWhen 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 f2c. (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 Friday, June 13, 1997.