all: oggfix

oggfix.o:
	gcc -O20 -ffast-math -fsigned-char  -c oggfix.c

oggfix: oggfix.o
	gcc -O20 -ffast-math -fsigned-char -o oggfix oggfix.o -lvorbis -logg -lm 

clean:
	rm -rf *.o oggfix
