MACH=`uname -s`
case "${MACH}" in
CYGWIN*)
EXE=".exe"
;;
*)
EXE=""
;;
esac
rm -f thing${EXE}
> -----Original Message-----
> From: Karr, David [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 06, 2001 4:38 PM
> To: '[EMAIL PROTECTED]'
> Subject: Makefile that runs w.o. changes on Cygwin & Linux: how to do
> "rm -f $(TARGET)"?
>
>
> I have a little test application that I want to build and run
> without change
> on Cygwin and Linux. It almost works perfectly, except for
> the "clean"
> target. Is there any way to reference "thing" and have it
> mean "thing" on
> Linux, but "thing.exe" on Cygwin?
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/