mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-18 16:25:05 +08:00
tools/release: make doesn't like MAKE in the environment, so call it makej
make really doesn't like something called MAKE in the environment, so call it makej like buildall.sh on the server. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
5f46eea191
commit
b68edcac72
@ -38,16 +38,16 @@ unset GIT_DIR
|
||||
git clone -s -l "$HERE" nasm
|
||||
rm -rf nasm/.git nasm/.gitignore
|
||||
|
||||
# How to invoke make if MAKE is not set
|
||||
MAKE="${MAKE:-make}"
|
||||
# How to invoke make if makej is not set
|
||||
makej="${makej:-make}"
|
||||
|
||||
# Create files which are in the release but automatically generated
|
||||
cd nasm
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr/local
|
||||
$MAKE perlreq spec manpages
|
||||
$MAKE alldeps
|
||||
$MAKE distclean
|
||||
$makej perlreq spec manpages
|
||||
$makej alldeps
|
||||
$makej distclean
|
||||
cd ..
|
||||
|
||||
# Clean up any previous attempt
|
||||
@ -78,9 +78,9 @@ find nasm-"$version" -not -type d -print > main
|
||||
# Create documentation
|
||||
cd nasm-"$version"
|
||||
./configure --prefix=/usr/local
|
||||
$MAKE doc
|
||||
$makej doc
|
||||
# Remove intermediate files.
|
||||
$MAKE cleaner
|
||||
$makej cleaner
|
||||
cd ..
|
||||
|
||||
# Remove non-documentation
|
||||
|
Loading…
Reference in New Issue
Block a user