.PHONY: all install distclean dist

all:
	./do.sh compile

distclean:
	./do.sh confclean

install: tif22pnm.exe png22pnm.exe
	cp -p tif22pnm.exe png22pnm.exe c:/usr/local/bin/
	cp -p tif22pnm.exe png22pnm.exe c:/usr/work/edrive/wk/dist/SAM2P/bin/

dist: distclean
	./do.sh dist

clean:
	rm *.obj *.exe
