1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
@echo off
REM # buildwin.cmd
REM # build ipmiutil for windows, detecting 32-bit/64-bit from LIBPATH
REM #
REM # First download a copy of getopt.c getopt.h.
REM # copy getopt.* util
REM # Then download and build a copy of openssl for Windows,
REM # and copy the built openssl files needed to lib & inc.
REM # copy libeay32.lib ssleay32.lib lib
REM # copy libeay32.dll ssleay32.dll util
REM # copy include\openssl\*.h lib\lanplus\inc\openssl
REM #
REM # You should either run this from the Visual Studio Command Line,
REM # or first run the appropriate vcvars.bat script.
set | findstr VCINSTALLDIR
if %errorlevel% EQU 1 goto vcerror
REM TODO, prebuild checking:
REM check for getopt.c,h
REM check for ssl libs
REM check for ssl includes
REM call mkssl
echo %LIBPATH% |findstr /C:64 >NUL
if %errorlevel% EQU 0 (
set MARCH=X64
set UTMAKE=ipmiutil64.mak
) else (
set MARCH=IX86
set UTMAKE=ipmiutil.mak
)
cd lib
nmake /nologo -f ipmilib.mak all
cd ..
REM # echo make lib done
cd util
nmake /nologo -f %UTMAKE% all
cd ..
REM # echo make util done
echo buildwin %UTMAKE% done
goto done
:vcerror
echo First need to run vcvars.bat
echo Check that VCINSTALLDIR and LIBPATH are correct
:done
|