2002-04-26 Steve Youngs <youngs@xemacs.org>
[gnus] / make-x.bat
index ce347d2..4f5c4e0 100644 (file)
@@ -3,7 +3,6 @@
 rem Modified once more by Frank Schmitt (ich@Frank-Schmitt.net)\r
 rem Modified by ShengHuo Zhu (zsh@cs.rochester.edu)\r
 rem Originally from make.bat by David Charlap (shamino@writeme.com)\r
-rem\r
 \r
 rem Clear PWD so emacs doesn't get confused\r
 set GNUS_PWD_SAVE=%PWD%\r
@@ -12,20 +11,23 @@ set PWD=
 if "%1" == "" goto usage\r
 \r
 set emacs=xemacs.exe\r
+if "%2" == "" set copy="false"\r
+if "%2" == "copy" set copy=true\r
+if "%2" == "/copy" set copy=true\r
 \r
 cd lisp\r
-call %1\%emacs% -batch -nw -q -no-site-file -l ./dgnushack.el -f dgnushack-compile\r
-if not "%2" == "copy" goto info\r
+call %1\%emacs% -batch -q -no-site-file -l ./dgnushack.el -f dgnushack-compile\r
+if not %copy%==true goto info\r
 attrib -r %1\..\..\xemacs-packages\lisp\gnus\*.*\r
-copy *.el* %1\..\..\xemacs-packages\lisp\gnus\r
+copy *.el? %1\..\..\xemacs-packages\lisp\gnus\r
 \r
 :info\r
-set EMACSINFO=call %1\%emacs% -no-site-file -no-init-file -batch -nw -q -l infohack.el -f batch-makeinfo\r
+set EMACSINFO=call %1\%emacs% -no-site-file -no-init-file -batch -q -l infohack.el -f batch-makeinfo\r
 cd ..\texi\r
 %EMACSINFO% message.texi\r
 %EMACSINFO% emacs-mime.texi\r
 %EMACSINFO% gnus.texi\r
-if not "%2" == "copy" goto done\r
+if not %copy%==true goto done\r
 copy gnus %1\..\..\xemacs-packages\info\r
 copy gnus-?? %1\..\..\xemacs-packages\info\r
 copy message %1\..\..\xemacs-packages\info\r
@@ -40,12 +42,12 @@ cd ..
 goto end\r
 \r
 :usage\r
-echo Usage: make :xemacs-dir: [copy]\r
+echo Usage: make-x.bat :xemacs-dir: [/copy]\r
 echo.\r
 echo where: :xemacs-dir: is the directory you installed xemacs in \r
 echo                     (the directory where xemacs.exe is situated)\r
 echo                    eg. C:\Programme\XEmacs\XEmacs-21.4.3\i586-pc-win32\r
-echo        copy indicates that the compiled files should be copied to your\r
+echo        /copy indicates that the compiled files should be copied to your\r
 echo             emacs lisp, info, and etc directories\r
 echo.\r
 echo Note: If you have Emacs/w3 you should set the environment variable \r