#Rowan Froeschner
#11/13/2022
#CPSC-1011 Section 007 Fall Semester 2022
#Lab 10B
#This program contains the 6 dependencies that are used in the program, which are all the files and then the compiler contains the 5 that actually contain function and code, as defs.h is just a connector file, and then the run and clean part tell the program to run or delete.
lab9: mainDriver.c getHeader.c fillImageArray.c writeHeader.c writePixels.c defs.h	
	gcc -g -Wall -o lab9 mainDriver.c getHeader.c fillImageArray.c writeHeader.c writePixels.c
run: lab9
	./lab9 < Disney.pnm
clean:
	rm lab9
