8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 16:03:02 +01:00
firebird-mirror/builds/win32/build_boot.bat
2003-01-25 08:55:04 +00:00

27 lines
328 B
Batchfile

@echo off
::===========
:MAIN
@if "%1"=="BOOT" (@call :MAKE_BOOT) else (@call :MAKE)
@goto :END
::===========
:MAKE_BOOT
@call :NMAKE common_boot.mak
@call :NMAKE gpre_boot.mak
@goto :EOF
::===========
:MAKE
@call :NMAKE fbclient_boot.mak
@call :NMAKE gpre.mak
@goto :EOF
::===========
:NMAKE
@nmake /f %1
@goto :EOF
:END