#
#	Ryan Blumberg
#	CpSc 1011
#	10/27/22
#	Lab Section 001
#	Lab number 9B
#	Program Description: The Makefile makes it easier to compile
#	and run multiple files. It makes it so that you don't have
#	to type out all the files when compiling.
#

lab9: writeHeader.c writePixels.c fillFlagArray.c getWidth.c mainDriver.c defs.h
	gcc -Wall -o lab9 writeHeader.c writePixels.c fillFlagArray.c getWidth.c mainDriver.c defs.h


run: lab9
	./lab9


clean:
	rm lab9
	rm -f output.txt 
