
all:
	gcc pofview.c -o pofview -s

help:
	@echo " "
	@echo "Targets:  all  test  clean install uninstall"
	@echo " "

test:
	./pofview xxx.pof -debug

clean:
	rm pofview xxx.pof.bmp xxx.pof.vo

install:
	cp pofview /usr/local/bin

uninstall:
	rm /usr/local/bin/pofview

