Matt Spinler | 9c0715b | 2021-01-21 11:15:33 -0600 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | AM_CPPFLAGS = -iquote ${top_srcdir} |
| 3 | |
| 4 | bin_PROGRAMS = \ |
| 5 | sensor-monitor |
| 6 | |
Matt Spinler | bcc12cb | 2021-02-12 08:32:30 -0600 | [diff] [blame] | 7 | systemdsystemunit_DATA = \ |
| 8 | service_files/sensor-monitor.service |
| 9 | |
Matt Spinler | 9c0715b | 2021-01-21 11:15:33 -0600 | [diff] [blame] | 10 | sensor_monitor_SOURCES = \ |
| 11 | shutdown_alarm_monitor.cpp \ |
Matt Spinler | 403d1f5 | 2021-02-01 15:35:25 -0600 | [diff] [blame] | 12 | threshold_alarm_logger.cpp \ |
Matt Spinler | 9c0715b | 2021-01-21 11:15:33 -0600 | [diff] [blame] | 13 | main.cpp |
| 14 | |
| 15 | sensor_monitor_LDADD = \ |
| 16 | $(SDBUSPLUS_LIBS) \ |
| 17 | $(SDEVENTPLUS_LIBS) \ |
| 18 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 19 | ${PHOSPHOR_DBUS_INTERFACES_LIBS} \ |
| 20 | -lstdc++fs \ |
| 21 | $(FMT_LIBS) |
| 22 | |
| 23 | sensor_monitor_CXXFLAGS = \ |
| 24 | $(SDBUSPLUS_CFLAGS) \ |
| 25 | $(SDEVENTPLUS_CFLAGS) \ |
| 26 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 27 | ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} \ |
| 28 | -flto |