diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-05-13 18:28:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-05-13 18:28:09 +0000 |
commit | 36671f080e8f66de73b0950a64157b07c2527078 (patch) | |
tree | 2c1e44821f12bfa08e104ab6f2f32644b1197d97 /nt | |
parent | 0e9bcb01a07bbfa2bda56b1e695326b386fb4a50 (diff) | |
download | emacs-36671f080e8f66de73b0950a64157b07c2527078.tar.gz |
Set BUILD_TYPE and INSTALL_DIR before calling make;
undo settings afterwards.
Diffstat (limited to 'nt')
-rwxr-xr-x | nt/install.bat | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nt/install.bat b/nt/install.bat index 6a8b4deee4c..d506efe9d2f 100755 --- a/nt/install.bat +++ b/nt/install.bat @@ -1,6 +1,7 @@ -nmake -f makefile.nt install
@echo off if (%1) == (speed) set BUILD_TYPE=spd if (%1) == (speed) shift if not (%1) == () set INSTALL_DIR=%1 -@if not (%1) == () set INSTALL_DIR=%1 +nmake -f makefile.nt install +set INSTALL_DIR= +set BUILD_TYPE= |