8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 19:23:03 +01:00
firebird-mirror/builds/win32/build_boot.bat

27 lines
328 B
Batchfile
Raw Normal View History

2003-01-24 18:15:04 +01:00
@echo off
::===========
:MAIN
2003-01-24 18:45:07 +01:00
@if "%1"=="BOOT" (@call :MAKE_BOOT) else (@call :MAKE)
2003-01-25 09:55:04 +01:00
@goto :END
2003-01-24 18:45:07 +01:00
::===========
:MAKE_BOOT
2003-01-24 18:15:04 +01:00
@call :NMAKE common_boot.mak
@call :NMAKE gpre_boot.mak
2003-01-24 18:45:07 +01:00
@goto :EOF
::===========
:MAKE
2003-01-24 18:15:04 +01:00
@call :NMAKE fbclient_boot.mak
@call :NMAKE gpre.mak
@goto :EOF
::===========
:NMAKE
@nmake /f %1
@goto :EOF
:END