CFLAGS=-g -Wall -std=c99 -O2

tutorial10: fat32.o tutorial10.c
	gcc $(CFLAGS) -o tutorial10 fat32.o tutorial10.c

fat32.o: fat32.h fat32.c
	gcc $(CFLAGS) -c fat32.c

clean:
	rm -f *.o
	rm -f tutorial10
