Please make your makefile multi-cpu friendly.

It is relatively simple to do:

Remove 
"MAKE = make -f Makefile"

Add
  MFLAGS = -f $(MAKEFILE)
  SUBMAKE = $(MAKE) $(MFLAGS)

and then for all lines below that, s/$(MAKE)/$(SUBMAKE)/


It then becomes possible for the user to simply do

MAKE='gmake -j 2' gmake

and have it compile in half the time on a dual-cpu system.

Modern make programs define $(MAKE) automatically.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to