Brad Bishop | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 1 | sbin_PROGRAMS = phosphor-hwmon-readd |
Matthew Barth | 6292aee | 2016-10-06 10:15:48 -0500 | [diff] [blame] | 2 | |
| 3 | phosphor_hwmon_readd_SOURCES = readd.cpp |
Brad Bishop | 0be1f8d | 2017-03-06 21:52:00 -0500 | [diff] [blame] | 4 | phosphor_hwmon_readd_LDADD = $(SDBUSPLUS_LIBS) libhwmon.la |
| 5 | phosphor_hwmon_readd_CXXFLAGS = $(SDBUSPLUS_CFLAGS) |
Matthew Barth | 6292aee | 2016-10-06 10:15:48 -0500 | [diff] [blame] | 6 | |
Brad Bishop | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 7 | noinst_LTLIBRARIES = libhwmon.la |
Brad Bishop | 0be1f8d | 2017-03-06 21:52:00 -0500 | [diff] [blame] | 8 | libhwmon_la_LDFLAGS = -static |
| 9 | libhwmon_la_LIBADD = \ |
Brad Bishop | 08379a3 | 2017-03-06 21:28:46 -0500 | [diff] [blame] | 10 | -lstdc++fs \ |
Brad Bishop | 4db6442 | 2017-02-16 11:33:32 -0500 | [diff] [blame] | 11 | $(SDBUSPLUS_LIBS) \ |
| 12 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 13 | $(PHOSPHOR_LOGGING_LIBS) |
Brad Bishop | 0be1f8d | 2017-03-06 21:52:00 -0500 | [diff] [blame] | 14 | libhwmon_la_CXXFLAGS = \ |
| 15 | $(SDBUSPLUS_CFLAGS) \ |
Brad Bishop | 4db6442 | 2017-02-16 11:33:32 -0500 | [diff] [blame] | 16 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 17 | $(PHOSPHOR_LOGGING_CFLAGS) |
Brad Bishop | bf86e72 | 2017-02-16 11:10:40 -0500 | [diff] [blame] | 18 | |
Brad Bishop | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 19 | libhwmon_la_SOURCES = \ |
Matthew Barth | 6292aee | 2016-10-06 10:15:48 -0500 | [diff] [blame] | 20 | argument.cpp \ |
Brad Bishop | e55ef3d | 2016-12-19 09:12:40 -0500 | [diff] [blame] | 21 | sensorset.cpp \ |
Brad Bishop | 6ae0330 | 2016-12-19 13:37:43 -0500 | [diff] [blame] | 22 | mainloop.cpp \ |
Brad Bishop | 613a5b3 | 2017-01-05 20:58:13 -0500 | [diff] [blame] | 23 | sysfs.cpp \ |
Matthew Barth | 048ac87 | 2017-03-09 14:36:08 -0600 | [diff] [blame^] | 24 | env.cpp \ |
| 25 | fan_speed.cpp |
Brad Bishop | e9ac8b4 | 2016-12-19 09:30:40 -0500 | [diff] [blame] | 26 | |
| 27 | SUBDIRS = . test |