#CFLAGS=-pg -g
CFLAGS=-O3 -g

all:	fcore

fcore:	fcore.o
	gcc fcore.o -o fcore -lvorbis -lvorbisenc -lvorbisfile -lao -lm -ldl -lshout

clean:
	rm *.o fcore
