Add IPMI interface to allow FW updates from Host

New OEM IPMI command to execute commands that would allow the Host to have access to the BMC to perform a FW update.
diff --git a/Makefile b/Makefile
index eaa7324..bacdef9 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
 all:  $(LIB_OEM)
 
 %.o: %.C
-	$(CXX) -c $< $(CXXFLAGS) -o $@
+	$(CXX) -std=c++14 -c $< $(CXXFLAGS) -o $@
 
 $(LIB_OEM): $(LIB_OEM_OBJ)
 	$(CXX) $^ -shared $(LDFLAGS) -o $@