Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
2 | AM_CPPFLAGS = -iquote ${top_srcdir} | ||||
3 | |||||
Patrick Venture | 71779ab | 2019-03-28 11:22:15 -0700 | [diff] [blame] | 4 | bin_PROGRAMS = \ |
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 5 | phosphor-fan-presence-tach |
6 | |||||
Matt Spinler | 00db950 | 2021-02-04 16:43:31 -0600 | [diff] [blame] | 7 | systemdsystemunit_DATA= |
8 | |||||
9 | if WANT_JSON | ||||
10 | systemdsystemunit_DATA += \ | ||||
11 | service_files/json/phosphor-fan-presence-tach@.service | ||||
12 | else | ||||
13 | systemdsystemunit_DATA += \ | ||||
14 | service_files/yaml/phosphor-fan-presence-tach@.service | ||||
15 | endif | ||||
16 | |||||
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 17 | phosphor_fan_presence_tach_SOURCES = \ |
Brad Bishop | 00b5208 | 2017-07-25 19:52:22 -0400 | [diff] [blame] | 18 | anyof.cpp \ |
Matt Spinler | e812239 | 2020-09-24 13:22:18 -0500 | [diff] [blame] | 19 | error_reporter.cpp \ |
Brad Bishop | bfb8160 | 2017-06-14 21:14:32 -0400 | [diff] [blame] | 20 | fallback.cpp \ |
Brad Bishop | 825e31e | 2017-06-14 16:38:22 -0400 | [diff] [blame] | 21 | fan.cpp \ |
Brad Bishop | 5c58948 | 2017-06-14 22:32:20 -0400 | [diff] [blame] | 22 | gpio.cpp \ |
Matt Spinler | 635de8c | 2020-09-24 13:51:40 -0500 | [diff] [blame] | 23 | logging.cpp \ |
Brad Bishop | 6174951 | 2017-07-25 19:02:15 -0400 | [diff] [blame] | 24 | psensor.cpp \ |
Brad Bishop | dd62e36 | 2017-06-14 16:54:03 -0400 | [diff] [blame] | 25 | tach.cpp \ |
Matthew Barth | fd05d64 | 2019-11-14 15:01:57 -0600 | [diff] [blame] | 26 | tach_detect.cpp \ |
Jolie Ku | 1a56865 | 2020-08-24 16:32:15 +0800 | [diff] [blame] | 27 | json_parser.cpp |
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 28 | |
29 | phosphor_fan_presence_tach_LDADD = \ | ||||
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 30 | $(SDBUSPLUS_LIBS) \ |
William A. Kennington III | 1cfc2f1 | 2018-10-19 17:29:46 -0700 | [diff] [blame] | 31 | $(SDEVENTPLUS_LIBS) \ |
Dinesh Chinari | 618027a | 2017-06-26 23:26:50 -0500 | [diff] [blame] | 32 | $(PHOSPHOR_LOGGING_LIBS) \ |
Brad Bishop | 8a502f5 | 2017-06-14 23:46:15 -0400 | [diff] [blame] | 33 | ${PHOSPHOR_DBUS_INTERFACES_LIBS} \ |
Matthew Barth | f3e7047 | 2019-12-03 13:33:20 -0600 | [diff] [blame] | 34 | $(LIBEVDEV_LIBS) \ |
Matthew Barth | 1826c73 | 2020-08-28 08:40:59 -0500 | [diff] [blame] | 35 | $(STDPLUS_LIBS) \ |
36 | $(FMT_LIBS) | ||||
37 | |||||
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 38 | phosphor_fan_presence_tach_CXXFLAGS = \ |
39 | $(SDBUSPLUS_CFLAGS) \ | ||||
William A. Kennington III | 1cfc2f1 | 2018-10-19 17:29:46 -0700 | [diff] [blame] | 40 | $(SDEVENTPLUS_CFLAGS) \ |
Dinesh Chinari | 618027a | 2017-06-26 23:26:50 -0500 | [diff] [blame] | 41 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
Brad Bishop | 8a502f5 | 2017-06-14 23:46:15 -0400 | [diff] [blame] | 42 | ${PHOSPHOR_DBUS_INTERFACES_CFLAGS} \ |
Andrew Geissler | ecd4bc7 | 2018-08-27 10:52:23 -0700 | [diff] [blame] | 43 | $(LIBEVDEV_CFLAGS) \ |
Matthew Barth | f3e7047 | 2019-12-03 13:33:20 -0600 | [diff] [blame] | 44 | -flto \ |
45 | $(STDPLUS_CFLAGS) | ||||
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 46 | |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 47 | if !WANT_JSON |
Brad Bishop | 372b22c | 2017-07-12 15:57:14 -0400 | [diff] [blame] | 48 | BUILT_SOURCES = generated.hpp |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 49 | TEMPLATES = \ |
50 | templates/generated.mako.hpp | ||||
Brad Bishop | 9df0e16 | 2017-04-22 14:19:45 -0400 | [diff] [blame] | 51 | |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 52 | generated.hpp: $(TEMPLATES) ${srcdir}/pfpgen.py $(PRESENCE_CONFIG) |
53 | $(AM_V_GEN)$(PFPGEN) > $(builddir)/$@ | ||||
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 54 | endif |