* Use `$(MAKE)' instead of `make' for systems where `make' isn't GNU

make (such as FreeBSD).
This commit is contained in:
Eelco Dolstra 2005-05-04 16:28:39 +00:00
parent 36fb29f8f0
commit d8a31da1ea
1 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ build-db: have-db
../dist/configure --prefix=$$pfx/inst-bdb \
--enable-cxx --disable-shared --disable-cryptography \
--disable-replication --disable-verify && \
make && \
make install)
$(MAKE) && \
$(MAKE) install)
touch build-db
endif
@ -57,8 +57,8 @@ build-aterm: have-aterm
(pfx=`pwd` && \
cd $(ATERM) && \
CC="$(CC)" ./configure --prefix=$$pfx/inst-aterm && \
make && \
make install)
$(MAKE) && \
$(MAKE) install)
touch build-aterm
endif