mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 16:03:02 +01:00
25 lines
587 B
Batchfile
25 lines
587 B
Batchfile
:: run prepare.bat first
|
|
:: Then run this script.
|
|
:: After that run makeX_debug.bat or makeX_release.bat
|
|
:: where X is your version of MSVC - 6 or 7.
|
|
|
|
@echo off
|
|
|
|
::===========
|
|
:MAIN
|
|
@echo.
|
|
@del ..\..\src\include\gen\autoconfig.h
|
|
@copy ..\..\src\include\gen\autoconfig_msvc.h ..\..\src\include\gen\autoconfig.h
|
|
@echo Preprocessing files required to do a boot-build...
|
|
@call build_boot.bat BOOT
|
|
@call preprocess.bat BOOT
|
|
@echo.
|
|
@echo Making necessary boot-build executables...
|
|
@call build_boot.bat
|
|
@echo.
|
|
@echo Preprocessing the entire source tree...
|
|
@call preprocess.bat
|
|
@goto :END
|
|
|
|
:END
|