# Bryce Getsinger
# CPSC 1011, Section 004, 11/13/2022
# Lab 10B, a lab which compresses an HD prohograph using pointers,
# structures, and functions in a multi-file program.

lab10: mainDriver.c getHeader.c fillImageArray.c writeHeader.c writePixels.c
	gcc -Wall -o lab10 mainDriver.c getHeader.c fillImageArray.c writeHeader.c writePixels.c

run: lab10
	./lab10 < Disney.pnm

clean:
	rm lab10 output.pnm
