#!/bin/sh
case "`uname -s`" in
    CYGWIN_NT-*)
	cygpath -a -m $@;;
    *)
	echo `pwd`/$1;;
esac
