--- Begin Message ---
diff -ruNp old/build.bat new/build.bat
--- old/build.bat       2004-03-27 13:13:10.000000000 +0000
+++ new/build.bat       2004-04-24 01:01:52.000000000 +0000
@@ -3,18 +3,22 @@
 :- batch file to build everything
 :- $Id: build.bat,v 1.14 2004/03/27 12:13:10 bartoldeman Exp $
 
+:-----------------------------------------------------------------------
 :- Syntax: BUILD [-r] [fat32|fat16] [msc|wc|tc|tcpp] [86|186|386]
 :- option case is significant !!
+:-----------------------------------------------------------------------
+
+set XERROR=1
+if "%XERROR%" == "" goto noenv
 
 if "%1" == "-r" call clobber.bat
 if "%1" == "-r" shift
 
-set XERROR=
-
 if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to 
reflect your setup!
 if not exist config.bat goto abort
 
 call config.bat
+if "%LAST%" == "" goto noenv
 
 :-----------------------------------------------------------------------
 :- following is command line handling
@@ -41,7 +45,8 @@ if not "%1" == "" goto loop_commandline
 if "%COMPILER%" == "" echo you MUST define a COMPILER variable in CONFIG.BAT
 if "%COMPILER%" == "" goto abort
 
-call default.bat
+call defaults.bat
+if "%LAST%" == "" goto noenv
 
 :-----------------------------------------------------------------------
 :- finally - we are going to compile
@@ -51,50 +56,51 @@ echo.
 echo Process UTILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd utils
-%MAKE% production
+call %MAKE% production
 if errorlevel 1 goto abort-cd
 
 echo.
 echo Process LIB ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd ..\lib
-%MAKE%
+call %MAKE%
 if errorlevel 1 goto abort-cd
 
 echo.
 echo Process DRIVERS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd ..\drivers
-%MAKE% production
+call %MAKE% production
 if errorlevel 1 goto abort-cd
 
 echo.
 echo Process BOOT +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd ..\boot
-%MAKE% production
+call %MAKE% production
 if errorlevel 1 goto abort-cd
 
 echo.
 echo Process SYS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd ..\sys
-%MAKE% production
+call %MAKE% production
 if errorlevel 1 goto abort-cd
 
 echo.
 echo Process KERNEL +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 echo.
 cd ..\kernel
-%MAKE% production
+call %MAKE% production
 if errorlevel 1 goto abort-cd
 
 cd ..
 
-:- if you like, put some finalizing commands (like copy to floppy)
-:- into build2.bat
+:- if you like, put finalizing commands (like copy to floppy) into build2.bat
+
+set XERROR=
 
-if exist build2.bat call build2
+if exist build2.bat call build2.bat
 
 echo.
 echo Processing is done.
@@ -104,9 +110,9 @@ goto end
 
 :abort-cd
 cd ..
+:noenv
 :abort
 echo Compilation was aborted!
-set XERROR=1
 
 :end
-default.bat clearset
+defaults.bat clearset
diff -ruNp old/buildall.bat new/buildall.bat
--- old/buildall.bat    2004-04-11 14:21:24.000000000 +0000
+++ new/buildall.bat    2004-04-24 01:05:46.000000000 +0000
@@ -9,56 +9,48 @@
 
 if "%1" == "$SUMMARY" goto summary
 
-set onerror=if not "%XERROR%" == "" goto daswarwohlnix
+call config.bat
+if "%LAST%" == "" goto end
 
 :***** MSCL kernels
 
-call config.bat
+if "%MSCL8_BASE%" == "" goto no_ms
+                   call build.bat -r msc 386 fat16
+if "%XERROR%" == "" call build.bat -r msc 186 fat16
+if "%XERROR%" == "" call build.bat -r msc  86 fat16
+if "%XERROR%" == "" call build.bat -r msc 386 fat32
+if "%XERROR%" == "" call build.bat -r msc 186 fat32
+if "%XERROR%" == "" call build.bat -r msc  86 fat32
 
-if "%MS_BASE%" == "" goto no_ms
-call build -r msc 386 fat16
-%ONERROR%
-call build -r msc 186 fat16
-%ONERROR%
-call build -r msc  86 fat16
-%ONERROR%
-call build -r msc 386 fat32
-%ONERROR%
-call build -r msc 186 fat32
-%ONERROR%
-call build -r msc  86 fat32
-%ONERROR%
+if not "%XERROR%" == "" goto daswarwohlnix
 :no_ms
 
 :***** TC 2.01 kernels
 
 if "%TC2_BASE%" == "" goto no_tc
-call build -r tc   186 fat16
-%ONERROR%
-call build -r tc    86 fat16
-%ONERROR%
-call build -r tc   186 fat32
-%ONERROR%
-call build -r tc    86 fat32
-%ONERROR%
+                   call build.bat -r tc 186 fat16
+if "%XERROR%" == "" call build.bat -r tc  86 fat16
+if "%XERROR%" == "" call build.bat -r tc 186 fat32
+if "%XERROR%" == "" call build.bat -r tc  86 fat32
+
+if not "%XERROR%" == "" goto daswarwohlnix
 :no_tc
 
 :***** (Open) Watcom kernels
 
 if "%WATCOM%" == "" goto no_wc
-call build -r wc    386 fat32
-%ONERROR%
-call build -r wc    386 fat16
-%ONERROR%
-call build -r wc     86 fat32
-%ONERROR%
-call build -r wc     86 fat16
-%ONERROR%
+                   call build.bat -r wc 386 fat32
+if "%XERROR%" == "" call build.bat -r wc 386 fat16
+if "%XERROR%" == "" call build.bat -r wc  86 fat32
+if "%XERROR%" == "" call build.bat -r wc  86 fat16
+
+if not "%XERROR%" == "" goto daswarwohlnix
 :no_wc
-    
+
 :***** now rebuild the default kernel
 
-call build -r
+call build.bat -r
+if not "%XERROR%" == "" goto daswarwohlnix
 
 :**************************************************************
 :* now we build a summary of all kernels HMA size + total size
@@ -70,30 +62,30 @@ set Sumfile=bin\ksummary.txt
 set TempSumfile=bin\tsummary.txt
 
 :****echo  >%TempSumfile% Summary of all kernels build
-:****echo.|date  >>%TempSumfile% 
-:****echo.|time  >>%TempSumfile% 
+:****echo.|date  >>%TempSumfile%
+:****echo.|time  >>%TempSumfile%
 :****for %%i in (bin\k*.map) do call %0 $SUMMARY %%i
 
-if exist %Sumfile% del %Sumfile%
-if exist %TempSumfile% del %TempSumfile%
+if exist %Sumfile% del %Sumfile%>nul
+if exist %TempSumfile% del %TempSumfile%>nul
 >ktemp.bat
 for %%i in (bin\k*.map) do echo call %0 $SUMMARY %%i >>ktemp.bat
 sort <ktemp.bat >ktemps.bat
 call ktemps.bat
-del ktemp.bat
-del ktemps.bat
+del ktemp.bat>nul
+del ktemps.bat>nul
 
 echo        >>%Sumfile% Summary of all kernels build
-echo.|date  >>%Sumfile% 
-echo.|time  >>%Sumfile% 
+echo.|date  >>%Sumfile%
+echo.|time  >>%Sumfile%
 find <%TempSumfile% "H" >>%Sumfile%
-del %TempSumfile% 
+del %TempSumfile%>nul
 
 set TempSumfile=
 set Sumfile=
 goto end
 
-:summary 
+:summary
 echo H*************************************************  %2 >>%TempSumfile%
 find<%2 " HMA_TEXT"|find/V "HMA_TEXT_START"|find/V "HMA_TEXT_END">>%TempSumfile%
 find<%2 " STACK">>%TempSumfile%
@@ -103,6 +95,5 @@ goto end
 
 :daswarwohlnix
 echo Sorry, something didn't work as expected :-(
-set ONERROR=
 
 :end
diff -ruNp old/clean.bat new/clean.bat
--- old/clean.bat       2004-03-27 13:13:10.000000000 +0000
+++ new/clean.bat       2004-04-24 01:08:08.000000000 +0000
@@ -1,37 +1,45 @@
 @echo off
 
-:- batch file to clean everything
+:- batch file to clean and clobber everything
 :- $Id: clean.bat,v 1.10 2004/03/27 12:13:10 bartoldeman Exp $
 
+if "%1" == "" %0 clean
+goto %1
+goto end
+
+:clean
+:clobber
 if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to 
reflect your setup!
 if not exist config.bat goto end
 
 call config.bat
-call default.bat
+if not "%LAST%" == "" call defaults.bat
+if     "%LAST%" == "" goto end
 
 cd utils
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\lib
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\drivers
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\boot
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\sys
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\kernel
-%MAKE% clean
+call %MAKE% %1
 
 cd ..\hdr
-if exist *.bak del *.bak
+if exist *.bak del *.bak>nul
 
 cd ..
-if exist *.bak del *.bak
+if exist *.bak del *.bak>nul
+if "%1"=="clobber" if exist status.me del status.me>nul
 
 :end
-default.bat clearset
+defaults.bat clearset
diff -ruNp old/clobber.bat new/clobber.bat
--- old/clobber.bat     2004-04-09 12:59:40.000000000 +0000
+++ new/clobber.bat     2004-03-27 05:43:02.000000000 +0000
@@ -1,38 +1 @@
[EMAIL PROTECTED] off
-
-:- batch file to clobber everything
-:- $Id: clobber.bat,v 1.11 2004/03/27 12:13:10 bartoldeman Exp $
-
-if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to 
reflect your setup!
-if not exist config.bat goto end
-
-call config.bat
-call default.bat
-
-cd utils
-%MAKE% clobber
-
-cd ..\lib
-%MAKE% clobber
-
-cd ..\drivers
-%MAKE% clobber
-
-cd ..\boot
-%MAKE% clobber
-
-cd ..\sys
-%MAKE% clobber
-
-cd ..\kernel
-%MAKE% clobber
-
-cd ..\hdr
-if exist *.bak del *.bak
-
-cd ..
-if exist *.bak del *.bak
-if exist status.me del status.me
-
-:end
-default.bat clearset
[EMAIL PROTECTED] clobber
\ No newline at end of file
diff -ruNp old/config.b new/config.b
--- old/config.b        2004-04-11 14:21:24.000000000 +0000
+++ new/config.b        2004-04-05 02:02:42.000000000 +0000
@@ -1,119 +1,127 @@
-:-
[EMAIL PROTECTED] off
+
 :- batch file that is included in all other batch files for configuration
-:-
+:- $Id: config.b,v 1.11 2003/07/19 18:12:26 bartoldeman Exp $
 
-:-****************************************************************
-:-  NOTICE!  You must edit and rename this file to CONFIG.BAT!   *
-:-****************************************************************
+:-----------------------------------------------------------------------
+:- NOTICE! You must edit and rename this file to CONFIG.BAT!
+:-----------------------------------------------------------------------
 
-:-*********************************************************************
-:- determine your compiler settings
-:- 
-:- you have to
-:-   search for XNASM    - and set the path for NASM
-:-   search for COMPILER - and set your compiler
-:-   search for ??_BASE  - and set the path to your compiler
+:- determine compiler(s) settings
 :- 
-:-*********************************************************************
+:- you REQUIRED to
+:-   search for NASM     - and set the path to NASM
+:-   search for COMPILER - and set the default compiler type
+:-   search for ??_BASE  - and set the path to compiler(s)
+
+set LAST=
+
+:-----------------------------------------------------------------------
+:- define NASM executable. Remember - it should not be protected
+:- mode DJGPP version if you're using Windows NT/2k/XP to compile.
+:- also: DJGPP-nasm crashes when using protected mode Borland's make
 
-:-**********************************************************************
-:-- define NASM executable - remember - it should not be protected
-:-  mode DJGPP version if you're using Windows NT/2k/XP to compile
-:-  also: DJGPP-nasm crashes when using protected mode Borland's make
-:-**********************************************************************
-
-set XNASM=c:\bin\nasm16
-
-:**********************************************************************
-:- define your COMPILER type here, pick one of them
-:**********************************************************************
+set NASM=c:\bin\nasm16
+
+:-----------------------------------------------------------------------
+:- define COMPILER type here, pick one of them
 
 :- Turbo C 2.01
 set COMPILER=TC2
 :- Turbo C++ 1.01
-:- set COMPILER=TURBOCPP
+::set COMPILER=TURBOCPP
 :- Turbo C 3.0
-:- set COMPILER=TC3
+::set COMPILER=TC3
 :- Borland C
-:- set COMPILER=BC5
+::set COMPILER=BC5
 :- Microsoft C
-:- set COMPILER=MSCL8
+::set COMPILER=MSCL8
 :- Watcom C
-:- set COMPILER=WATCOM
+::set COMPILER=WATCOM
+
+:-----------------------------------------------------------------------
+:- where is the BASE dir of compiler(s).
+:- should be defined for each installed and used compiler.
 
-:-**********************************************************************
-:-- where is the BASE dir of your compiler(s) ??
-:-**********************************************************************
-                                               
 set TC2_BASE=c:\tc201
-:- set TP1_BASE=c:\tcpp
-:- set TC3_BASE=c:\tc3
-:- set BC5_BASE=c:\bc5
-:- set MS_BASE=c:\msvc
-
-:- if WATCOM maybe you need to set your WATCOM environment variables 
-:- and path
-:- if not \%WATCOM% == \ goto watcom_defined
-:- set WATCOM=c:\watcom
-:- set PATH=%PATH%;%WATCOM%\binw
+::set TP1_BASE=c:\tcpp
+::set TC3_BASE=c:\tc3
+::set BC5_BASE=c:\bc5
+::set MSCL8_BASE=c:\msvc
+
+:- For Watcom you may need to set WATCOM environment variable and PATH
+::if not "%WATCOM%" == "" goto watcom_defined
+::set WATCOM=c:\watcom
+::set OLDPATH=%PATH%
+::set PATH=%PATH%;%WATCOM%\binw
 :watcom_defined
 
-:-**********************************************************************
-:- where is UPX and which options to use?
-:-**********************************************************************
+:-----------------------------------------------------------------------
+:- where is UPX and which options to use
+:- (comment this out if you don't want to use it)
+
 set XUPX=upx --8086 --best
-:- or use set XUPX=
-:- if you don't want to use it
 
-:-**********************************************************************
-:- (optionally) which linker to use:
-:- (otherwise will be determined automatically)
-:-
-:- WARNING TLINK needs to be in your PATH!
-:-**********************************************************************
+:-----------------------------------------------------------------------
+:- define which linker to use OR it will be determined AUTOMATICALLY.
+:- WARNING TLINK needs to be in PATH!
 
 :- Turbo Link
-:- set XLINK=tlink /m/c/s/l
+::set LINK=tlink/m/c/s/l
 :- Microsoft Link
-:- set XLINK=d:\qb\link /ma
-:- set XLINK=%MS_BASE%\bin\link /ONERROR:NOEXE /ma /nologo
+::set LINK=d:\qb\link/ma
+::set LINK=link/ONERROR:NOEXE /ma /nologo
 :- WATCOM Link (wlinker is a batch file calling ms2wlink and wlink)
-:- set XLINK=..\utils\wlinker /ma /nologo
+::set LINK=..\utils\wlinker/ma/nologo
 
 :- set path for Turbo Link - use OLDPATH to restore normal path
-:- set OLDPATH=%PATH%
-:- set PATH=%PATH%;%TC2_BASE%
+::set OLDPATH=%PATH%
+::set PATH=%PATH%;%TC2_BASE%
+
+:-----------------------------------------------------------------------
+:- define which librarian to use OR it will be determined AUTOMATICALLY.
+
+:- Turbo Lib
+::set LIBPLUS=+
+::set LIBTERM=
+::set LIBUTIL=tlib
+:- Microsoft Lib
+::set LIBPLUS=+
+::set LIBTERM=;
+::set LIBUTIL=lib/nologo
+:- WATCOM Lib
+::set LIBPLUS=
+::set LIBTERM=
+::set LIBUTIL=wlib -q 
 
-:**********************************************************************
-:* optionally define your MAKE type here, if not then
-:* it will be automatically determined, pick one of them
-:* use MS nmake if you want to compile with MSCL
-:**********************************************************************
+:-----------------------------------------------------------------------
+:- define which MAKE to use OR it will be determined AUTOMATICALLY.
 
 :- Borland MAKE
-:- set MAKE=%TC2_BASE%\make
+::set MAKE=make
+::set MAKE=maker -S
 :- Watcom MAKE in MS mode
-:- set MAKE=%WATCOM%\binw\wmake /ms
+::set MAKE=wmake/ms
 :- Microsoft MAKE
-:- set MAKE=%MS_BASE%\bin\nmake /nologo
+::set MAKE=nmake/nologo
 
-:**********************************************************************
-:* select your default target: required CPU and what FAT system to support
-:**********************************************************************
-
-set XCPU=86
-:- set XCPU=186
-:- set XCPU=386
+:-----------------------------------------------------------------------
+:- select default target: CPU type (default is 86) and
+:- what FAT system (default is 32) to support
+
+::set XCPU=86
+::set XCPU=186
+::set XCPU=386
 
-set XFAT=16
-:- set XFAT=32
+::set XFAT=16
+::set XFAT=32
 
 :- Give extra compiler DEFINE flags here
 :- such as -DDEBUG : extra DEBUG output
 :-         -DDOSEMU : printf output goes to dosemu log
-:- set ALLCFLAGS=-DDEBUG
+::set ALLCFLAGS=-DDEBUG
 
+:-----------------------------------------------------------------------
 
-:-
-:- $Id: config.b,v 1.12 2004/04/11 12:21:24 bartoldeman Exp $
-:-
+set LAST=1
+if not "%LAST%" == "1" defaults.bat clearset
diff -ruNp old/default.bat new/default.bat
--- old/default.bat     2004-04-11 14:21:24.000000000 +0000
+++ new/default.bat     1970-01-01 00:00:00.000000000 +0000
@@ -1,66 +0,0 @@
[EMAIL PROTECTED] off
-
-:- $Id: default.bat,v 1.2 2004/04/11 12:21:24 bartoldeman Exp $
-
-if "%1" == "clearset" goto clearset
-
-:-----------------------------------------------------------------------
-
-if not "%MAKE%" == "" goto skip_make
-
-if "%COMPILER%" == "TC2"      set MAKE=%TC2_BASE%\make
-if "%COMPILER%" == "TURBOCPP" set MAKE=%TP1_BASE%\bin\make
-if "%COMPILER%" == "TC3"      set MAKE=%TC3_BASE%\bin\make
-if "%COMPILER%" == "BC5"      set MAKE=%BC5_BASE%\bin\make
-if "%COMPILER%" == "WATCOM"   set MAKE=wmake /ms /h
-if "%COMPILER%" == "MSCL8"    set MAKE=%MS_BASE%\bin\nmake /nologo
-
-echo Make is %MAKE%.
-
-:skip_make
-
-:-----------------------------------------------------------------------
-
-if not "%XLINK%" == "" goto skip_xlink
-
-if "%COMPILER%" == "TC2"      set XLINK=%TC2_BASE%\tlink /m/c
-if "%COMPILER%" == "TURBOCPP" set XLINK=%TP1_BASE%\bin\tlink /m/c
-if "%COMPILER%" == "TC3"      set XLINK=%TC3_BASE%\bin\tlink /m/c
-if "%COMPILER%" == "BC5"      set XLINK=%BC5_BASE%\bin\tlink /m/c
-if "%COMPILER%" == "WATCOM"   set XLINK=..\utils\wlinker /ma/nologo
-if "%COMPILER%" == "MSCL8"    set XLINK=%MS_BASE%\bin\link /ONERROR:NOEXE /ma /nologo
-
-echo Linker is %XLINK%.
-
-:skip_xlink
-
-:-----------------------------------------------------------------------
-
-if not "%XUPX%" == "" set UPXOPT=-U
-if     "%XUPX%" == "" set UPXOPT=
-if     "%XUPX%" == "" set [EMAIL PROTECTED]
-
-goto end
-
-:-----------------------------------------------------------------------
-
-:clearset
-
-if not "%OLDPATH%" == "" set PATH=%OLDPATH%
-if not "%OLDPATH%" == "" set OLDPATH=
-
-set MAKE=
-set COMPILER=
-set XCPU=
-set XFAT=
-set XLINK=
-set TC2_BASE=
-set TP1_BASE=
-set TC3_BASE=
-set BC5_BASE=
-set MS_BASE=
-set XNASM=
-set XUPX=
-set UPXOPT=
-
-:end
diff -ruNp old/defaults.bat new/defaults.bat
--- old/defaults.bat    1970-01-01 00:00:00.000000000 +0000
+++ new/defaults.bat    2004-04-24 01:11:08.000000000 +0000
@@ -0,0 +1,90 @@
[EMAIL PROTECTED] off
+
+:- $Id: defaults.bat,v 1.2 2004/04/11 12:21:24 bartoldeman Exp $
+
+set LAST=
+if "%1" == "clearset" goto clearset
+
+:-----------------------------------------------------------------------
+
+if "%COMPILER%" == "TC2"      set BASE=%TC2_BASE%
+if "%COMPILER%" == "TURBOCPP" set BASE=%TP1_BASE%
+if "%COMPILER%" == "TC3"      set BASE=%TC3_BASE%
+if "%COMPILER%" == "BC5"      set BASE=%BC5_BASE%
+if "%COMPILER%" == "WATCOM"   set BASE=%WATCOM%
+if "%COMPILER%" == "MSCL8"    set BASE=%MSCL8_BASE%
+if "%BASE%"     == ""         goto clearset
+
+:-----------------------------------------------------------------------
+
+if not "%LINK%" == "" goto skip_link
+
+set LINK=%BASE%\bin\tlink/m/c
+if "%COMPILER%" == "TC2"      set LINK=%BASE%\tlink /m/c
+if "%COMPILER%" == "WATCOM"   set LINK=..\utils\wlinker /ma/nologo
+if "%COMPILER%" == "MSCL8"    set LINK=%BASE%\bin\link /ONERROR:NOEXE /ma /nologo
+
+echo Linker is %LINK%
+
+:skip_link
+
+:-----------------------------------------------------------------------
+
+if not "%LIBUTIL%" == "" goto skip_lib
+
+set LIBPLUS=+
+set LIBTERM=
+set LIBUTIL=%BASE%\bin\tlib
+if "%COMPILER%" == "TC2"      set LIBUTIL=%BASE%\tlib
+if "%COMPILER%" == "WATCOM"   set LIBPLUS=
+if "%COMPILER%" == "WATCOM"   set LIBUTIL=wlib -q
+if "%COMPILER%" == "MSCL8"    set LIBTERM=;
+if "%COMPILER%" == "MSCL8"    set LIBUTIL=%BASE%\bin\lib /nologo
+
+echo Librarian is %LIBUTIL%
+
+:skip_lib
+
+:-----------------------------------------------------------------------
+
+if not "%MAKE%" == "" goto skip_make
+
+set MAKE=%BASE%\bin\make
+if "%COMPILER%" == "TC2"      set MAKE=%BASE%\make
+if "%COMPILER%" == "WATCOM"   set MAKE=wmake /ms /h
+if "%COMPILER%" == "MSCL8"    set MAKE=%BASE%\bin\nmake /nologo
+
+echo Make is %MAKE%
+
+:skip_make
+
+:-----------------------------------------------------------------------
+
+set LAST=1
+if "%LAST%" == "1" goto end
+
+:-----------------------------------------------------------------------
+
+:clearset
+
+set XCPU=
+set XFAT=
+set COMPILER=
+set TC2_BASE=
+set TP1_BASE=
+set TC3_BASE=
+set BC5_BASE=
+set MSCL8_BASE=
+set BASE=
+set LINK=
+set LIBUTIL=
+set LIBPLUS=
+set LIBTERM=
+set MAKE=
+set NASM=
+set XUPX=
+
+if not "%OLDPATH%" == "" set PATH=%OLDPATH%
+set OLDPATH=
+
+:end
diff -ruNp old/utils/indent.ini new/utils/indent.ini
--- old/utils/indent.ini        2001-11-18 19:18:12.000000000 +0000
+++ new/utils/indent.ini        1970-01-01 00:00:00.000000000 +0000
@@ -1,18 +0,0 @@
--kr
--di2
--nbc
--nfca
--bl
--bli0
--ss
--npcs
--ncs
--nbs
--i2
--ci4
--nce
--sob
--nut
--nbad
--cli2
--hnl
diff -ruNp old/utils/makefile new/utils/makefile
--- old/utils/makefile  2003-09-14 18:28:28.000000000 +0000
+++ new/utils/makefile  2004-04-03 10:23:32.000000000 +0000
@@ -1,6 +1,6 @@
 !include "../mkfiles/generic.mak"
 
-CFLAGS = -I$(INCLUDEPATH) -I..\hdr
+CFLAGS=-I$(INCLUDEPATH) -I..\hdr
 
 production: patchobj.com exeflat.exe
 
@@ -14,6 +14,5 @@ exeflat.exe: exeflat.c ../hdr/exe.h
 clobber: clean
 
 clean:
-       $(RM) *.obj *.bak *.crf *.xrf *.map *.lst *.las *.cod *.err status.me
-       $(RM) exeflat.exe patchobj.com
-
+       $(RM) *.obj *.bak *.crf *.xrf *.map *.lst *.las *.cod *.err \
+             status.me exeflat.exe patchobj.com
diff -ruNp old/utils/proto.bat new/utils/proto.bat
--- old/utils/proto.bat 2001-11-18 00:26:44.000000000 +0000
+++ new/utils/proto.bat 1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-for %%f in ( %1 %2 %3 %4 %5 %6 %7 %8 %9 ) do mkptypes %%f >>proto.h
-
diff -ruNp old/utils/rmfiles.bat new/utils/rmfiles.bat
--- old/utils/rmfiles.bat       2004-04-11 00:56:28.000000000 +0000
+++ new/utils/rmfiles.bat       2004-03-27 06:10:04.000000000 +0000
@@ -7,4 +7,3 @@ shift
 goto loop_commandline
 
 :done_with_commandline
-
diff -ruNp old/utils/wlinker.bat new/utils/wlinker.bat
--- old/utils/wlinker.bat       2004-04-11 00:56:08.000000000 +0000
+++ new/utils/wlinker.bat       2004-04-03 11:38:24.000000000 +0000
@@ -1,4 +1,4 @@
 @echo off
-ms2wlink %1 %2 %3 %4 %5 %6 %7 %8 %9 ,,,, > kernel.lnk
-echo op map,statics,verbose >> kernel.lnk
+ms2wlink %1 %2 %3 %4 %5 %6 %7 %8 %9 ,,,,>kernel.lnk
+echo op map,statics,verbose>>kernel.lnk
 call wlink @kernel.lnk




-------------------------------------------------------
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
_______________________________________________
Freedos-kernel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-kernel

--- End Message ---

Reply via email to