Add witherspoon-pseq-monitor framework
This application is for monitoring the power
sequencer chip for faults.
Change-Id: I6b18fcba75ae0206311e4bcafdebad27221b0796
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/power-sequencer/Makefile.am b/power-sequencer/Makefile.am
new file mode 100644
index 0000000..2aed038
--- /dev/null
+++ b/power-sequencer/Makefile.am
@@ -0,0 +1,20 @@
+AM_DEFAULT_SOURCE_EXT = .cpp
+AM_CPPFLAGS = -I$(top_srcdir)
+
+sbin_PROGRAMS = \
+ witherspoon-pseq-monitor
+
+witherspoon_pseq_monitor_SOURCES = \
+ argument.cpp \
+ main.cpp
+
+witherspoon_pseq_monitor_LDADD = \
+ $(top_builddir)/libpower.la \
+ $(PHOSPHOR_LOGGING_LIBS) \
+ ${PHOSPHOR_DBUS_INTERFACES_LIBS} \
+ $(SDBUSPLUS_LIBS)
+
+witherspoon_pseq_monitor_CXXFLAGS = \
+ $(PHOSPHOR_LOGGING_CFLAGS) \
+ ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} \
+ $(SDBUSPLUS_CFLAGS)