|
From: Blas R. S. <br...@us...> - 2003-07-03 13:08:12
|
Build Version : T1.5.0.3624 Firebird 1.5 Release Candidate 4 (writeBuildNum.sh,v 1.3621 2003/07/03 13:08:09 brodsom Exp ) Update of /cvsroot/firebird/firebird2/builds/win32 In directory sc8-pr-cvs1:/tmp/cvs-serv2521/win32 Modified Files: clean_all.bat Log Message: Add batch to remove build created files and directories Index: clean_all.bat =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/win32/clean_all.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -b -U3 -r1.1 -r1.2 --- clean_all.bat 3 Jul 2003 12:44:36 -0000 1.1 +++ clean_all.bat 3 Jul 2003 13:08:09 -0000 1.2 @@ -1,6 +1,6 @@ @echo off -@echo Cleaning build +@echo Cleaning directories @rmdir /S /Q dbs 2>nul @rmdir /S /Q temp 2>nul @rmdir /S /Q output 2>nul @@ -9,8 +9,14 @@ @rmdir /S /Q msvc7\debug 2>nul @rmdir /S /Q msvc7\release 2>nul @rmdir /S /Q ..\..\gen 2>nul + +@echo Cleaning files @del *.exe 2>nul @del *.msg 2>nul +@del *.dll 2>nul @del ..\..\src\include\gen\autoconfig.h 2>nul @del ..\..\src\include\gen\blrtable.h 2>nul -@del msvc6\*.log \ No newline at end of file +@del msvc6\*.log 2>nul +@del msvc6\*.plg 2>nul +@del msvc7\*.log 2>nul +@del msvc7\*.plg 2>nul |