Add base support for BMC state management
This is the starting code needing to
build the application. Still more to do,
this is just the layout for the additional
commits that will be done for the state
management.
Change-Id: Ief1dc96c84b34630e60ef40c99d4faf5b6f6e02e
Signed-off-by: Josh D. King <jdking@us.ibm.com>
diff --git a/Makefile.am b/Makefile.am
index 7e4cc20..baef5a6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,8 @@
sbin_PROGRAMS = \
phosphor-host-state-manager \
- phosphor-chassis-state-manager
+ phosphor-chassis-state-manager \
+ phosphor-bmc-state-manager
phosphor_host_state_manager_SOURCES = \
host_state_manager.cpp \
@@ -14,5 +15,11 @@
xyz.openbmc_project.State.Chassis.cpp \
chassis_state_manager_main.cpp
+phosphor_bmc_state_manager_SOURCES = \
+ bmc_state_manager.cpp \
+ xyz.openbmc_project.State.BMC.cpp \
+ bmc_state_manager_main.cpp
+
phosphor_host_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
-phosphor_chassis_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
\ No newline at end of file
+phosphor_chassis_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
+phosphor_bmc_state_manager_LDFLAGS = $(SYSTEMD_LIBS)