Re: How to pass a group of COMPILER OPTIONS using GNU Make Command Line under WINDOWS
Paul Smith <[email protected]>
| Newsgroups | gmane.comp.gnu.make.windows,gmane.comp.gnu.make.general |
|---|---|
| Organization | GNU's Not Unix! |
| Message-ID | <1286503984.17296.12.camel@homebase> |
Hi Parha; please choose just one mailing list. If you think the problem is mostly generic make, help-make is better. If the problem is clearly Windows specific, use make-w32. On Fri, 2010-10-08 at 02:04 +0000, Partha None wrote: > =============================================================== > ALL: > cd DBC_Boot_Build && $(MAKE) BYPASS_ANCGEN=$(BYPASS_ANCGEN) > MAKEBENCH=$(MAKEBENCH) > COMPILE_OPTIONS_FROM_MAKE='$(COMPILE_OPTIONS_FROM_MAKE)' -f > TestDBCGNUBootMake $(MAKEFLAGS) > ===================================================================== It would be helpful if you provided a simpler test case. However, my first note is that you should absolutely NOT put $(MAKEFLAGS) on the command line. Using the variable $(MAKE) in your rule is enough. All the command line flags are transmitted to sub-makes through a special method make uses, which ensures proper quoting etc. Trying to do it yourself, as you're doing here, is almost certainly doomed to fail. Try removing that and see if that works. -- ------------------------------------------------------------------------------- Paul D. Smith <[email protected]> Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist