make Q

"Aaron Gray" <[email protected]> Mon, 9 Mar 2009 18:02:37 -0000
Newsgroups gmane.comp.gnu.utils
Message-ID <[email protected]>
Hi,

is there anyway I can combine these commands :-

 ifeq ( $(OS), Cygwin)
    X
 else
    ifeq ( $(OS), MingW)
        X
    else
        Y
    endif
 endif

so I only need to write X once ?

Many thanks in advance,

Aaron