Re: ?complex args pass to other app w/o changing?

1999-10-19 Thread Greg Wooledge
zhaoway ([EMAIL PROTECTED]) wrote: for a call: make CXXFLAGS=-O2 -do-strength-reduce LD=-s i want the wrapper (above fake make prog) to pass the CXXFLAGS=.. et al to the real make prog (say, make_real). How about this: alias make='make CXXFLAGS=-O2 -do-strength-reduce LD=-s' (Put this in

?complex args pass to other app w/o changing?

1999-10-18 Thread zhaoway
i want a wapper for make that do make -j -l 10.00-like things. so i need the wrapper (pretend as make) to pass args to it to the real make program. that is for a call: make CXXFLAGS=-O2 -do-strength-reduce LD=-s i want the wrapper (above fake make prog) to pass the CXXFLAGS=.. et al to the real