# There is nothing to edit in here. Make sure you put your
# drive geometry into "geometry.h" before compiling. I am sure
# your hard disk is not the same as mine.

CFLAGS=-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
LDFLAGS=-s -N
CC=gcc

format: format.c geometry.h
	$(CC) $(CFLAGS) $(LDFLAGS) -o format format.c

