
CC = gcc -Wall -O2 -fomit-frame-pointer

all:		tester


tester:		tester.c
		$(CC) -o $@ $<

clean:
		rm -rf tester

