Hi,

I read in http://www.gnu.org/software/make/manual/make.html#Choosing-the-Shell how to set a new shell to be used in a 'Makefile', but it is not working for me, as in the example:
"
SHELL=/usr/bin/tclsh


a:
   @puts "hello"         ; \
   set x " and goodbye" ; \
   puts $$x             ;

b:
   puts "hello"         ; \
   set x " and goodbye" ; \
   puts $$x             ;

"

If I try 'make a', the output is the 'tclsh' prompt, I mean :

%

I I try 'make b', the output is:

puts "hello"         ; \
   set x " and goodbye" ; \
   puts $x             ;
%


Does anyone know how can I do it?

Thanks a lot!



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to