SOURCES=dump_vpe.c
HEADERS=

dump_vpe: $(SOURCES) $(HEADERS)
	gcc -O2 -ggdb3 -o dump_vpe $(SOURCES)

clean:
	rm -f dump_vpe

.PHONY: clean run
