mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 15:23:02 +01:00
06a4df3708
Instructions in the list.
20 lines
585 B
Batchfile
20 lines
585 B
Batchfile
@echo off
|
|
|
|
@call setenvvar.bat
|
|
@if errorlevel 1 (goto :END)
|
|
|
|
@echo Cleaning temporary directories
|
|
@rmdir /S /Q %ROOT_PATH%\output 2>nul
|
|
@rmdir /S /Q %ROOT_PATH%\gen 2>nul
|
|
@rmdir /S /Q %ROOT_PATH%\temp 2>nul
|
|
|
|
@echo Cleaning and install build files
|
|
@del *.log 2>nul
|
|
@del %ROOT_PATH%\src\include\gen\autoconfig.h 2>nul
|
|
@del %ROOT_PATH%\src\include\gen\blrtable.h 2>nul
|
|
@del %ROOT_PATH%\builds\win32\msvc6\*.plg 2>nul
|
|
@del %ROOT_PATH%\builds\win32\msvc7\*.plg 2>nul
|
|
@del %ROOT_PATH%\builds\install\arch-specific\win32\*.dll 2>nul
|
|
@rmdir /s /q %ROOT_PATH%\builds\win32\install_image 2>nul
|
|
|