all: main.c options.c
	gcc -O0 -g -o runit main.c options.c

clean:
	rm runit

