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 | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 4 | phosphor_hwmon_readd_LDADD = libhwmon.la |
Brad Bishop | bf86e72 | 2017-02-16 11:10:40 -0500 | [diff] [blame] | 5 | phosphor_hwmon_readd_LDFLAGS = $(SDBUSPLUS_LIBS) |
| 6 | phosphor_hwmon_readd_CFLAGS = $(SDBUSPLUS_CFLAGS) |
Matthew Barth | 6292aee | 2016-10-06 10:15:48 -0500 | [diff] [blame] | 7 | |
Brad Bishop | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 8 | noinst_LTLIBRARIES = libhwmon.la |
Brad Bishop | bf86e72 | 2017-02-16 11:10:40 -0500 | [diff] [blame] | 9 | libhwmon_la_LDFLAGS = $(SDBUSPLUS_LIBS) $(PHOSPHOR_DBUS_INTERFACES_LIBS) |
| 10 | libhwmon_la_CFLAGS = $(SDBUSPLUS_CFLAGS) $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) |
| 11 | |
Brad Bishop | 4c9c454 | 2016-12-05 15:07:51 -0500 | [diff] [blame] | 12 | libhwmon_la_SOURCES = \ |
Matthew Barth | 6292aee | 2016-10-06 10:15:48 -0500 | [diff] [blame] | 13 | argument.cpp \ |
| 14 | directory.cpp \ |
Brad Bishop | e55ef3d | 2016-12-19 09:12:40 -0500 | [diff] [blame] | 15 | sensorset.cpp \ |
Brad Bishop | 6ae0330 | 2016-12-19 13:37:43 -0500 | [diff] [blame] | 16 | mainloop.cpp \ |
Brad Bishop | 613a5b3 | 2017-01-05 20:58:13 -0500 | [diff] [blame] | 17 | sysfs.cpp \ |
Brad Bishop | bf86e72 | 2017-02-16 11:10:40 -0500 | [diff] [blame] | 18 | env.cpp |
Brad Bishop | e9ac8b4 | 2016-12-19 09:30:40 -0500 | [diff] [blame] | 19 | |
| 20 | SUBDIRS = . test |