Brad Bishop | e9ac8b4 | 2016-12-19 09:30:40 -0500 | [diff] [blame] | 1 | check_PROGRAMS = |
Brad Bishop | 1164195 | 2017-08-29 11:21:15 -0400 | [diff] [blame] | 2 | noinst_PROGRAMS = \ |
| 3 | find-callout-path \ |
| 4 | find-hwmon \ |
| 5 | hwmonio \ |
| 6 | phosphor-hwmon-test |
| 7 | |
| 8 | find_callout_path_SOURCES = \ |
| 9 | find_callout_path.cpp |
| 10 | find_callout_path_LDFLAGS = \ |
| 11 | -static |
| 12 | find_callout_path_LDADD = \ |
| 13 | -lstdc++fs \ |
Matt Spinler | 626df17 | 2018-03-05 12:03:55 -0600 | [diff] [blame] | 14 | $(SDBUSPLUS_LIBS) \ |
| 15 | $(PHOSPHOR_LOGGING_LIBS) \ |
Brad Bishop | 1164195 | 2017-08-29 11:21:15 -0400 | [diff] [blame] | 16 | ${top_builddir}/sysfs.o |
| 17 | |
| 18 | find_callout_path_CXXFLAGS = |
| 19 | |
| 20 | find_hwmon_SOURCES = \ |
| 21 | find_hwmon.cpp |
| 22 | find_hwmon_LDFLAGS = \ |
| 23 | -static |
| 24 | find_hwmon_LDADD = \ |
| 25 | -lstdc++fs \ |
Matt Spinler | 626df17 | 2018-03-05 12:03:55 -0600 | [diff] [blame] | 26 | $(SDBUSPLUS_LIBS) \ |
| 27 | $(PHOSPHOR_LOGGING_LIBS) \ |
Brad Bishop | 1164195 | 2017-08-29 11:21:15 -0400 | [diff] [blame] | 28 | ${top_builddir}/sysfs.o |
| 29 | |
| 30 | find_hwmon_CXXFLAGS = |
| 31 | |
| 32 | hwmonio_SOURCES = \ |
| 33 | hwmonio.cpp |
| 34 | hwmonio_LDFLAGS = \ |
| 35 | -static |
| 36 | hwmonio_LDADD = \ |
| 37 | -lstdc++fs \ |
Matt Spinler | 626df17 | 2018-03-05 12:03:55 -0600 | [diff] [blame] | 38 | $(SDBUSPLUS_LIBS) \ |
| 39 | $(PHOSPHOR_LOGGING_LIBS) \ |
Brad Bishop | 1164195 | 2017-08-29 11:21:15 -0400 | [diff] [blame] | 40 | ${top_builddir}/sysfs.o |
| 41 | |
| 42 | hwmonio_CXXFLAGS = |
Brad Bishop | e9ac8b4 | 2016-12-19 09:30:40 -0500 | [diff] [blame] | 43 | |
| 44 | phosphor_hwmon_test_SOURCES = \ |
| 45 | test.cpp |
Brad Bishop | 0be1f8d | 2017-03-06 21:52:00 -0500 | [diff] [blame] | 46 | phosphor_hwmon_test_LDADD = \ |
| 47 | ${top_builddir}/libhwmon.la \ |
| 48 | $(SDBUSPLUS_LIBS) \ |
| 49 | $(PTHREAD_LIBS) |
| 50 | |
| 51 | phosphor_hwmon_test_CXXFLAGS = \ |
| 52 | $(SDBUSPLUS_CFLAGS) \ |
| 53 | $(PTHREAD_CFLAGS) |