Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | AM_CPPFLAGS = -iquote ${top_srcdir} |
| 3 | |
Patrick Venture | e75fcd3 | 2019-03-28 12:46:21 -0700 | [diff] [blame] | 4 | bin_PROGRAMS = \ |
Brandon Wyman | 05be4a9 | 2019-03-13 12:09:01 -0500 | [diff] [blame] | 5 | psu-monitor |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 6 | |
Brandon Wyman | 05be4a9 | 2019-03-13 12:09:01 -0500 | [diff] [blame] | 7 | psu_monitor_SOURCES = \ |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 8 | main.cpp \ |
| 9 | argument.cpp \ |
Matt Spinler | d7abf36 | 2018-01-18 12:40:02 -0600 | [diff] [blame] | 10 | power_supply.cpp \ |
| 11 | record_manager.cpp |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 12 | |
Brandon Wyman | 05be4a9 | 2019-03-13 12:09:01 -0500 | [diff] [blame] | 13 | psu_monitor_CXXFLAGS = \ |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 14 | $(SDBUSPLUS_CFLAGS) \ |
| 15 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 16 | ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} |
| 17 | |
Brandon Wyman | 05be4a9 | 2019-03-13 12:09:01 -0500 | [diff] [blame] | 18 | psu_monitor_LDADD = \ |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 19 | ${top_builddir}/libpower.la \ |
| 20 | $(SDBUSPLUS_LIBS) \ |
| 21 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 22 | ${PHOSPHOR_DBUS_INTERFACES_LIBS} |
| 23 | |