mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Respect the MAKE environment variable.
This commit is contained in:
parent
ac7a99c636
commit
d925033e38
@ -33,6 +33,7 @@ DEBUG=no
|
|||||||
|
|
||||||
EXPORT_TAG='-r HEAD'
|
EXPORT_TAG='-r HEAD'
|
||||||
VERSION=
|
VERSION=
|
||||||
|
MAKE=${MAKE-make}
|
||||||
|
|
||||||
if test x"$TMPDIR" = x
|
if test x"$TMPDIR" = x
|
||||||
then
|
then
|
||||||
@ -103,14 +104,14 @@ fi
|
|||||||
# Create configure and friends.
|
# Create configure and friends.
|
||||||
if test ! -f configure; then
|
if test ! -f configure; then
|
||||||
echo $e_n "Creating \`configure' from \`configure.in'... $e_c"
|
echo $e_n "Creating \`configure' from \`configure.in'... $e_c"
|
||||||
make -f Makefile.cvs 1>>$O 2>&1
|
$MAKE -f Makefile.cvs 1>>$O 2>&1
|
||||||
echo "done."
|
echo "done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove `Makefile' if it already exists.
|
# Remove `Makefile' if it already exists.
|
||||||
if test -f Makefile; then
|
if test -f Makefile; then
|
||||||
echo $e_n "Cleaning old Makefiles with \`make distclean'... $e_c"
|
echo $e_n "Cleaning old Makefiles with \`$MAKE distclean'... $e_c"
|
||||||
make distclean 1>>$O 2>&1
|
$MAKE distclean 1>>$O 2>&1
|
||||||
echo "done."
|
echo "done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -122,20 +123,20 @@ echo "done."
|
|||||||
# Now build the MO files.
|
# Now build the MO files.
|
||||||
echo $e_n "Building MO files out of PO files... $e_c"
|
echo $e_n "Building MO files out of PO files... $e_c"
|
||||||
cd po
|
cd po
|
||||||
make 1>>$O 2>&1
|
$MAKE 1>>$O 2>&1
|
||||||
cd ..
|
cd ..
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
||||||
# Now build the Info documentation and the man page.
|
# Now build the Info documentation and the man page.
|
||||||
echo $e_n "Building Info and man documentation... $e_c"
|
echo $e_n "Building Info and man documentation... $e_c"
|
||||||
cd doc
|
cd doc
|
||||||
make 1>>$O 2>&1
|
$MAKE 1>>$O 2>&1
|
||||||
cd ..
|
cd ..
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
||||||
# Create the distribution file.
|
# Create the distribution file.
|
||||||
echo $e_n "Creating distribution tarball... $e_c"
|
echo $e_n "Creating distribution tarball... $e_c"
|
||||||
make dist 1>>$O 2>&1
|
$MAKE dist 1>>$O 2>&1
|
||||||
mv wget-*.tar.gz $DEST_DIR
|
mv wget-*.tar.gz $DEST_DIR
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user