Initial commit of binary store handler.

Implement a dummy interface with TODOs.

Signed-off-by: Kun Yi <kunyi@google.com>
Change-Id: Ie58b3aa58d209063fe2af7402086a72da999fb5a
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..676eceb
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,12 @@
+AM_DEFAULT_SOURCE_EXT = .cpp
+
+libbinarystoredir = ${libdir}/ipmid-providers
+libbinarystore_LTLIBRARIES = libbinarystore.la
+libbinarystore_la_SOURCES = main.cpp \
+			    handler.cpp
+libbinarystore_la_LDFLAGS = $(PHOSPHOR_LOGGING_LIBS) \
+			    -version-info 0:0:0 -shared
+libbinarystore_la_CXXFLAGS = $(PHOSPHOR_LOGGING_CFLAGS) \
+			     -flto
+
+SUBDIRS = . test