]> sjero.net Git - wget/commitdiff
[svn] Respect the MAKE environment variable.
authorhniksic <devnull@localhost>
Sat, 15 Jun 2002 20:27:19 +0000 (13:27 -0700)
committerhniksic <devnull@localhost>
Sat, 15 Jun 2002 20:27:19 +0000 (13:27 -0700)
util/dist-wget

index 1f4cea2211891389b1965dd0b9ab149e3994ca37..d8546e05e0f1f8b6562f9ab9a62688554190c1ce 100755 (executable)
@@ -33,6 +33,7 @@ DEBUG=no
 
 EXPORT_TAG='-r HEAD'
 VERSION=
+MAKE=${MAKE-make}
 
 if test x"$TMPDIR" = x
 then
@@ -103,14 +104,14 @@ fi
 # Create configure and friends.
 if test ! -f configure; then
   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."
 fi
 
 # Remove `Makefile' if it already exists.
 if test -f Makefile; then
-  echo $e_n "Cleaning old Makefiles with \`make distclean'... $e_c"
-  make distclean 1>>$O 2>&1
+  echo $e_n "Cleaning old Makefiles with \`$MAKE distclean'... $e_c"
+  $MAKE distclean 1>>$O 2>&1
   echo "done."
 fi
 
@@ -122,20 +123,20 @@ echo "done."
 # Now build the MO files.
 echo $e_n "Building MO files out of PO files... $e_c"
 cd po
-make 1>>$O 2>&1
+$MAKE 1>>$O 2>&1
 cd ..
 echo "done."
 
 # Now build the Info documentation and the man page.
 echo $e_n "Building Info and man documentation... $e_c"
 cd doc
-make 1>>$O 2>&1
+$MAKE 1>>$O 2>&1
 cd ..
 echo "done."
 
 # Create the distribution file.
 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
 echo "done."