[Date Prev][Date Next] [Chronological] [Thread] [Top]

gmake for openldap stable 981025



There are several places in the (created, I think) Makefiles where the
user-invoked "make" is replaced by the program "make".  To wit:

  cd libraries; gmake  all
gmake[1]: Entering directory `/usr/local/users/wes/ldap/libraries'
making all in /usr/local/users/wes/ldap/libraries

  cd libavl; make -w all
Usage : make [ -f makefile ][ -K statefile ]... [ -d ][ -dd ][ -D ][ -DD ]
             [ -e ][ -i ][ -k ][ -n ][ -p ][ -P ][ -q ][ -r ][ -s ][ -S ][ -t ]
             [ -V ][ target... ][ macro=value... ]

Note that while the "libraries" directory is invoked with gmake,
"libavl" is invoked, incorrectly, with make.  Correct use of the $MAKE
make variable should fix this problem.

:wes