#CFLAGS = -g -Wall
CFLAGS = -O3 -Wall

all: frickin

frickin:
	@cd src; make
	@cp src/frickin .

clean:
	@cd src; make clean
	@rm -f frickin
