.PHONY: all install distclean dist

all:
	./do.sh compile

distclean:
	./do.sh confclean

BINS=tif22pnm.exe png22pnm.exe
install: $(BINS)
	cp -p $(BINS) c:/usr/local/txdir/w32tex/bin64/
	cp -p $(BINS) c:/usr/work/edrive/wk/w64dist/SAM2P/bin64/

dist: distclean
	./do.sh dist

clean::
	rm -f *.obj *.exe *~
