summaryrefslogtreecommitdiff
path: root/buildmin.cmd
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-09-26 05:07:36 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-09-26 05:07:36 +0200
commit4b28a392fa890390755f58e0755ab56e8edaa295 (patch)
treeafc91b260fb8df69fdd19c93261ea68cadf9eaed /buildmin.cmd
parentdcc89cc2006fea0ca21fbe267930a0ac3c850b52 (diff)
New upstream version 3.0.7upstream/3.0.7
Diffstat (limited to 'buildmin.cmd')
-rw-r--r--buildmin.cmd31
1 files changed, 31 insertions, 0 deletions
diff --git a/buildmin.cmd b/buildmin.cmd
new file mode 100644
index 0000000..bf40503
--- /dev/null
+++ b/buildmin.cmd
@@ -0,0 +1,31 @@
+@echo off
+REM # buildmin32.cmd
+REM # build ipmiutil for windows in standalone mode (minimal, 32bit)
+REM # without IPMI LAN 2.0 libraries, so no SOL. Use for bootables.
+REM #
+REM # First download a copy of getopt.c getopt.h.
+REM # copy getopt.* util
+REM #
+
+REM TODO, prebuild checking:
+REM check for getopt.c,h
+
+set | findstr VCINSTALLDIR
+if %errorlevel% EQU 1 goto vcerror
+
+set UTMAKE=ipmiutil2.mak
+echo %LIBPATH% |findstr /C:64 >NUL
+if %errorlevel% EQU 0 set UTMAKE=ipmiutil2-64.mak
+
+cd util
+nmake /nologo -f %UTMAKE% all
+cd ..
+
+echo buildmin %UTMAKE% done
+goto done
+
+:vcerror
+echo Need to first run vcvars.bat
+
+:done
+