From a7f89980e5b3f4b9a74c70dbc5ffe8aabd28be28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Jul 2014 18:04:32 +0200 Subject: Imported Upstream version 2.9.3 --- lib/ipmilib.mak | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lib/ipmilib.mak (limited to 'lib/ipmilib.mak') diff --git a/lib/ipmilib.mak b/lib/ipmilib.mak new file mode 100644 index 0000000..a894d3f --- /dev/null +++ b/lib/ipmilib.mak @@ -0,0 +1,37 @@ +# ipmilib.mak +# This makefile will build the ipmiutil lib directory +# +# Make sure to download and build openssl for Windows +# + +# The ipmiutil lib directory +PLUS_DIR=lanplus +PLUS_LIB=lanplus.lib + +# Set your compiler options +RM=del +CP=copy + +all: banner $(PLUS_LIB) + +banner: + @echo Building ipmi libs + +$(PLUS_LIB): + cd $(PLUS_DIR) + nmake /nologo -f ipmiplus.mak all + cd .. + $(CP) $(PLUS_DIR)\$(PLUS_LIB) . + +clean: + $(RM) $(PLUS_LIB) 2>NUL + cd $(PLUS_DIR) + nmake /nologo -f ipmiplus.mak clean + cd .. + +distclean: + $(RM) $(PLUS_LIB) 2>NUL + cd $(PLUS_DIR) + nmake /nologo -f ipmiplus.mak distclean + cd .. + -- cgit v1.2.3