Initial chassis state management code

This is just the basics to get the generated code
compiling and to verify the basic dbus interfaces.

Change-Id: I335964da456d8173e2ce792c6614770da43303b4
Signed-off-by: Andrew Geissler <andrewg@us.ibm.com>
diff --git a/Makefile.am b/Makefile.am
index 9a2ba2f..479df05 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,11 +1,18 @@
 AM_DEFAULT_SOURCE_EXT = .cpp
 
 sbin_PROGRAMS = \
-	op-host-state-manager
+	op-host-state-manager \
+	op-chassis-state-manager
 
 op_host_state_manager_SOURCES = \
 	host_state_manager.cpp \
 	xyz.openbmc_project.State.Host.cpp \
 	host_state_manager_main.cpp
 
-op_host_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
\ No newline at end of file
+op_chassis_state_manager_SOURCES = \
+	chassis_state_manager.cpp \
+	xyz.openbmc_project.State.Chassis.cpp \
+	chassis_state_manager_main.cpp
+
+op_host_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
+op_chassis_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
\ No newline at end of file