blob: a13348b84b597db9ffdacf46c4d93895f2632219 [file] [log] [blame]
Matt Spinlerafb39132017-08-14 13:53:07 -05001AM_DEFAULT_SOURCE_EXT = .cpp
2AM_CPPFLAGS = -I$(top_srcdir)
3
Patrick Venturee75fcd32019-03-28 12:46:21 -07004bin_PROGRAMS = \
Brandon Wyman088ab9c2019-03-13 12:05:38 -05005 pseq-monitor
Matt Spinlerafb39132017-08-14 13:53:07 -05006
Brandon Wyman088ab9c2019-03-13 12:05:38 -05007pseq_monitor_SOURCES = \
Matt Spinlerafb39132017-08-14 13:53:07 -05008 argument.cpp \
Matt Spinlerf02daec2017-08-14 14:00:46 -05009 main.cpp \
Matt Spinlerb54357f2017-08-21 14:38:54 -050010 pgood_monitor.cpp \
Matt Spinler70849272017-08-22 09:14:40 -050011 runtime_monitor.cpp \
Matt Spinlerb54357f2017-08-21 14:38:54 -050012 ucd90160.cpp \
13 ucd90160_defs.cpp
Matt Spinlerafb39132017-08-14 13:53:07 -050014
Brandon Wyman088ab9c2019-03-13 12:05:38 -050015pseq_monitor_LDADD = \
Matt Spinlerafb39132017-08-14 13:53:07 -050016 $(top_builddir)/libpower.la \
17 $(PHOSPHOR_LOGGING_LIBS) \
18 ${PHOSPHOR_DBUS_INTERFACES_LIBS} \
William A. Kennington IIIe5a8b472018-10-18 00:40:04 -070019 $(SDBUSPLUS_LIBS) \
20 $(SDEVENTPLUS_LIBS)
Matt Spinlerafb39132017-08-14 13:53:07 -050021
Brandon Wyman088ab9c2019-03-13 12:05:38 -050022pseq_monitor_CXXFLAGS = \
Matt Spinlerafb39132017-08-14 13:53:07 -050023 $(PHOSPHOR_LOGGING_CFLAGS) \
24 ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} \
William A. Kennington IIIe5a8b472018-10-18 00:40:04 -070025 $(SDBUSPLUS_CFLAGS) \
26 $(SDEVENTPLUS_CFLAGS)