%% Daniel Aleksandrow <[EMAIL PROTECTED]> writes:

  da> A=`find mission/ -name "*.mission" | xargs echo`

Backticks (``) are a shell construct.  This is a makefile.

If you want to run a shell command, you'll have to use the GNU make
$(shell ...) function.

Also, I recommend using simply-expanded variables(:= not =) with $(shell
...) functions, so that they're only invoked once no matter how many
times the variable is used.

-- 
-------------------------------------------------------------------------------
 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

Reply via email to