Re: best way to prevent a cygwin build?

2011-12-02 Thread Csaba Raduly
On Fri, Dec 2, 2011 at 8:46 AM, Paul Allen Newell wrote: Dear Cygwin: I have a network of Fedora machines and WinXP running Cygwin. Most of the projects I work on can be compiled/linked/run under both, but there are exceptions. As in Maya ... I am not happy with having to run two separate

Re: best way to prevent a cygwin build?

2011-12-02 Thread Warren Young
On 12/2/2011 12:46 AM, Paul Allen Newell wrote: I am not happy with having to run two separate source trees and would like a way (as in best standard) to add something to any Maya makefile which will prevent execution if it is being compiled on Cygwin. You might get better answers if you give

Re: best way to prevent a cygwin build?

2011-12-02 Thread Dave Korn
On 02/12/2011 09:47, Csaba Raduly wrote: On Fri, Dec 2, 2011 at 8:46 AM, Paul Allen Newell wrote: I am not happy with having to run two separate source trees and would like a way (as in best standard) to add something to any Maya makefile which will prevent execution if it is being compiled

[SOLVED:] Re: best way to prevent a cygwin build?

2011-12-02 Thread Paul Allen Newell
On 12/2/2011 10:49 AM, Dave Korn wrote: Well, in this particular case: ifeq (Cygwin, $(shell uname -o)) $(error This project does not build in Cygwin) endif Can be placed anywhere in the makefile, no need to modify the build rules. cheers, DaveK Csaba, Warren, and Dave:

best way to prevent a cygwin build?

2011-12-01 Thread Paul Allen Newell
Dear Cygwin: I have a network of Fedora machines and WinXP running Cygwin. Most of the projects I work on can be compiled/linked/run under both, but there are exceptions. As in Maya ... I am not happy with having to run two separate source trees and would like a way (as in best standard) to