summaryrefslogtreecommitdiff
path: root/buildwin32.cmd
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2019-12-22 16:44:47 +0100
committerJörg Frings-Fürst <debian@jff.email>2019-12-22 16:44:47 +0100
commit596189b7b38b9869fa632f9f15fe76652c4d6a3d (patch)
treebf26673e880e846978da24fc627c5bd5826f80f1 /buildwin32.cmd
parentccfc550b12b142c11dcf4d249d086925af0443c4 (diff)
New upstream version 3.1.5upstream/3.1.5
Diffstat (limited to 'buildwin32.cmd')
-rw-r--r--buildwin32.cmd50
1 files changed, 0 insertions, 50 deletions
diff --git a/buildwin32.cmd b/buildwin32.cmd
deleted file mode 100644
index adc427b..0000000
--- a/buildwin32.cmd
+++ /dev/null
@@ -1,50 +0,0 @@
-@echo off
-REM # buildwin32.cmd
-REM # build ipmiutil for windows
-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
-
-call vcvars32.bat
-
-REM TODO, prebuild checking:
-REM check for getopt.c,h
-REM check for ssl libs
-REM check for ssl includes
-REM call mkssl
-
-set UTMAKE=ipmiutil.mak
-echo %LIBPATH% |findstr /C:64 >NUL
-if %errorlevel% EQU 0 goto vcerror
-
-call cleanwin.cmd
-
-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 buildwin32 ipmiutil done
-goto done
-
-:vcerror
-echo Either VCINSTALLDIR is missing or LIBPATH includes 64bit
-echo Need to run vcvars32.bat for 32bit from a fresh session
-
-:done
-