Sequential build of libjava
Paul D. Smith
psmith@gnu.org
Mon Sep 16 17:40:00 GMT 2002
%% Mike Stump <mrs@apple.com> writes:
ms> I have a question, if we do:
ms> echo $(MAKE) >/dev/null; $(MULTIDO) what-ev-a
Good idea; yes, this will work. GNU make merely looks for the text
$(MAKE) or ${MAKE}; it doesn't try to examine the shell script to
understand what's being done.
Here's another idea which might be even less overhead:
: $(MAKE); $(MULTIDO) what-ev-a
Or vice versa; put the ": $(MAKE)" at the end after $(MULTIDO).
--
-------------------------------------------------------------------------------
Paul D. Smith <psmith@gnu.org> 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
More information about the Java
mailing list