all: vbidecode

vbidecode: vbidecode.cc
	g++ -g -O6 -fomit-frame-pointer -m486 -funroll-loops -o vbidecode vbidecode.cc 

clean:
	rm -f vbidecode


