FreeDOS/clean.bat

84 lines
1.5 KiB
Batchfile
Raw Normal View History

@echo off
rem batch file to clean everything
rem $Id$
rem $Log$
rem Revision 1.5 2001/11/04 19:47:37 bartoldeman
rem kernel 2025a changes: see history.txt
rem
rem Revision 1.4 2001/03/22 04:13:30 bartoldeman
rem Change LF to CR/LF in batch files.
rem
rem Revision 1.3 2000/05/25 20:56:19 jimtabor
rem Fixed project history
rem
rem Revision 1.2 2000/05/14 17:05:58 jimtabor
rem Cleanup CRs
rem
rem Revision 1.1.1.1 2000/05/06 19:34:53 jhall1
rem The FreeDOS Kernel. A DOS kernel that aims to be 100% compatible with
rem MS-DOS. Distributed under the GNU GPL.
rem
rem Revision 1.3 1999/08/25 03:59:14 jprice
rem New build batch files.
rem
rem Revision 1.2 1999/04/23 03:46:02 jprice
rem Improved by jprice
rem
rem Revision 1.1.1.1 1999/03/29 15:39:15 jprice
rem New version without IPL.SYS
rem
rem Revision 1.4 1999/02/09 04:47:54 jprice
rem Make makefile use common config.mak file
rem
rem Revision 1.3 1999/01/30 08:29:10 jprice
rem Clean up
rem
if not exist config.bat goto noconfigbat
if not exist config.mak goto noconfigmak
goto start
:noconfigbat
echo You must copy CONFIG.B to CONFIG.BAT and edit it to reflect your setup!
goto end
:noconfigmak
echo You must copy CONFIG.M to CONFIG.MAK and edit it to reflect your setup!
goto end
:start
@set COMPILER=tc2
call config.bat
cd utils
%MAKE% clean
cd ..\lib
%MAKE% clean
cd ..\drivers
%MAKE% clean
cd ..\boot
%MAKE% clean
cd ..\sys
%MAKE% clean
cd ..\kernel
%MAKE% clean
cd ..\hdr
del *.bak
cd ..
del *.bak
:end
set MAKE=
set COMPILER=