all: compile

compile: clean notjustcats.c
	gcc -Wall notjustcats.c -g -o notjustcats

simple: compile
	./notjustcats simple.img ./recovered_files

simple2: compile
	./notjustcats simple2.img ./recovered_files

random: compile
	./notjustcats random.img ./recovered_files

multiSectorSubDir: compile
	./notjustcats multiSectorSubDir.img ./recovered_files

tar:
	tar cvzf project4.tgz README Makefile notjustcats.c

untar:
	tar xvzf project4.tgz

clean:
	rm -rf notjustcats
	rm -rf notjustcats.dSYM
	rm -rf project4.tgz
	