%% "Tobias Contreras" <[EMAIL PROTECTED]> writes: tc> In nmake there is the ability to use || "or" in the conditionals, tc> I see that there is none of this in gnumake, why is that?
I'm not sure how to answer this. tc> And how would I convert this "or conditional" to something gnumake tc> will like. If you're using GNU make 3.81 you can use the $(or ...) and $(and ...) functions. Be sure you understand how make determines true vs. false in boolean contexts. If you aren't using 3.81, there are various tricks you can use: we'll need more information about EXACTLY what you're trying to do. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
