| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp | 
|  | 2 |  | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 3 | AM_CPPFLAGS = -I$(abs_srcdir) -I$(abs_srcdir)/include | 
|  | 4 | export AM_CPPFLAGS | 
|  | 5 |  | 
| William A. Kennington III | 5023aa9 | 2019-04-04 18:00:09 -0700 | [diff] [blame] | 6 | if AUTOCONF_CODE_COVERAGE_2019_01_06 | 
|  | 7 | include $(top_srcdir)/aminclude_static.am | 
|  | 8 | clean-local: code-coverage-clean | 
|  | 9 | distclean-local: code-coverage-dist-clean | 
|  | 10 | else | 
|  | 11 | @CODE_COVERAGE_RULES@ | 
|  | 12 | endif | 
|  | 13 |  | 
| William A. Kennington III | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 14 | providersdir = ${libdir}/ipmid-providers | 
|  | 15 | providers_LTLIBRARIES = | 
|  | 16 |  | 
| Vernon Mauery | e9f8857 | 2020-01-30 16:11:34 -0800 | [diff] [blame] | 17 | if FEATURE_IPMI_WHITELIST | 
|  | 18 | IPMI_WHITELIST_SOURCE = ipmiwhitelist.cpp | 
|  | 19 | else | 
|  | 20 | IPMI_WHITELIST_SOURCE = | 
|  | 21 | endif | 
|  | 22 |  | 
| Patrick Venture | 1c8ee49 | 2019-03-28 11:43:45 -0700 | [diff] [blame] | 23 | bin_PROGRAMS = \ | 
| Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 24 | ipmid | 
| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 25 |  | 
|  | 26 | ipmid_SOURCES = \ | 
| Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 27 | ipmid-new.cpp \ | 
| Vishwanatha Subbanna | ac149a9 | 2017-07-11 18:16:50 +0530 | [diff] [blame] | 28 | settings.cpp \ | 
| Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 29 | host-cmd-manager.cpp | 
| Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 30 |  | 
| Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 31 | libipmi20_BUILT_LIST = \ | 
| Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 32 | sensor-gen.cpp \ | 
| Tom Joseph | e19540e | 2019-02-04 14:06:58 +0530 | [diff] [blame] | 33 | inventory-sensor-gen.cpp \ | 
| Patrick Venture | 1ad9da8 | 2019-08-19 12:25:54 -0700 | [diff] [blame] | 34 | fru-read-gen.cpp | 
| Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 35 |  | 
| Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 36 | BUILT_SOURCES = \ | 
| Vernon Mauery | e9f8857 | 2020-01-30 16:11:34 -0800 | [diff] [blame] | 37 | $(IPMI_WHITELIST_SOURCE) \ | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 38 | $(libipmi20_BUILT_LIST) | 
| Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 39 |  | 
| Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 40 | CLEANFILES = $(BUILT_SOURCES) | 
| Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 41 |  | 
| Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 42 | COMMON_CXX = \ | 
|  | 43 | -flto \ | 
|  | 44 | -Wno-psabi \ | 
|  | 45 | $(SYSTEMD_CFLAGS) \ | 
|  | 46 | $(libmapper_CFLAGS) \ | 
|  | 47 | $(SDBUSPLUS_CFLAGS) \ | 
|  | 48 | $(PHOSPHOR_LOGGING_CFLAGS) \ | 
|  | 49 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 50 | -DBOOST_ERROR_CODE_HEADER_ONLY \ | 
|  | 51 | -DBOOST_SYSTEM_NO_DEPRECATED \ | 
| Vernon Mauery | e7329c7 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 52 | -DBOOST_COROUTINES_NO_DEPRECATION_WARNING \ | 
|  | 53 | -DBOOST_ASIO_DISABLE_THREADS \ | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 54 | -DBOOST_ALL_NO_LIB | 
|  | 55 |  | 
| Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 56 | ipmid_CXXFLAGS = $(COMMON_CXX) | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 57 | ipmid_LDADD = \ | 
|  | 58 | libipmid/libipmid.la \ | 
| Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 59 | user_channel/libchannellayer.la \ | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 60 | libipmid-host/libipmid-host.la | 
| Deepak Kodihalli | 18aa044 | 2017-07-21 07:07:09 -0500 | [diff] [blame] | 61 | ipmid_LDFLAGS = \ | 
|  | 62 | $(SYSTEMD_LIBS) \ | 
|  | 63 | $(libmapper_LIBS) \ | 
|  | 64 | $(LIBADD_DLOPEN) \ | 
|  | 65 | $(PHOSPHOR_LOGGING_LIBS) \ | 
|  | 66 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ | 
| Richard Marian Thomaiyar | 4654d99 | 2018-04-19 05:38:37 +0530 | [diff] [blame] | 67 | $(CRYPTO_LIBS) \ | 
| Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 68 | -lboost_coroutine \ | 
| Vernon Mauery | 28565ac | 2018-08-01 09:16:56 -0700 | [diff] [blame] | 69 | -lstdc++fs \ | 
| Deepak Kodihalli | 18aa044 | 2017-07-21 07:07:09 -0500 | [diff] [blame] | 70 | -export-dynamic | 
| Vishwanatha Subbanna | ac149a9 | 2017-07-11 18:16:50 +0530 | [diff] [blame] | 71 |  | 
| Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 72 | # TODO: Rather than use -export-dynamic, we should use -export-symbol to have a | 
|  | 73 | #       selective list of symbols. | 
|  | 74 |  | 
| Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 75 | ipmiwhitelist.cpp: ${srcdir}/generate_whitelist.sh $(WHITELIST_CONF) | 
| Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 76 | $(SHELL) $^ > $@ | 
| Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 77 |  | 
| Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 78 | sensor-gen.cpp: scripts/writesensor.mako.cpp scripts/sensor_gen.py @SENSOR_YAML_GEN@ | 
| Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 79 | $(AM_V_GEN)@SENSORGEN@ -o $(top_builddir) generate-cpp | 
|  | 80 |  | 
| Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 81 | inventory-sensor-gen.cpp: scripts/inventorysensor.mako.cpp scripts/inventory-sensor.py @INVSENSOR_YAML_GEN@ | 
| Tom Joseph | d5899e7 | 2017-05-05 11:20:34 +0530 | [diff] [blame] | 82 | $(AM_V_GEN)@INVSENSORGEN@ -o $(top_builddir) generate-cpp | 
|  | 83 |  | 
| Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 84 | fru-read-gen.cpp: scripts/readfru.mako.cpp scripts/fru_gen.py @FRU_YAML_GEN@ | 
| Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 85 | $(AM_V_GEN)@FRUGEN@ -o $(top_builddir) generate-cpp | 
|  | 86 |  | 
| William A. Kennington III | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 87 | providers_LTLIBRARIES += libipmi20.la | 
| Johnathan Mantey | b87034e | 2019-09-16 10:50:50 -0700 | [diff] [blame] | 88 | if FEATURE_TRANSPORT_OEM | 
|  | 89 | libipmi20_la_TRANSPORTOEM = transporthandler_oem.cpp | 
|  | 90 | else | 
|  | 91 | libipmi20_la_TRANSPORTOEM = | 
|  | 92 | endif | 
|  | 93 |  | 
| Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 94 | libipmi20_la_SOURCES = \ | 
| Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 95 | app/channel.cpp \ | 
| Patrick Venture | 5e6ac71 | 2017-10-25 12:16:19 -0700 | [diff] [blame] | 96 | app/watchdog.cpp \ | 
| William A. Kennington III | 5257525 | 2018-02-09 15:54:56 -0800 | [diff] [blame] | 97 | app/watchdog_service.cpp \ | 
| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 98 | apphandler.cpp \ | 
| Xo Wang | 069db2f | 2017-08-09 15:31:33 -0700 | [diff] [blame] | 99 | sys_info_param.cpp \ | 
| Patrick Venture | 02e3237 | 2019-08-16 10:50:18 -0700 | [diff] [blame] | 100 | entity_map_json.cpp \ | 
| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 101 | chassishandler.cpp \ | 
|  | 102 | dcmihandler.cpp \ | 
|  | 103 | ipmisensor.cpp \ | 
|  | 104 | storageaddsel.cpp \ | 
|  | 105 | transporthandler.cpp \ | 
|  | 106 | globalhandler.cpp \ | 
| Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 107 | groupext.cpp \ | 
| Marri Devender Rao | 7d9157e | 2017-07-01 16:11:40 -0500 | [diff] [blame] | 108 | selutility.cpp \ | 
| Marri Devender Rao | 0acf057 | 2017-07-03 12:25:47 -0500 | [diff] [blame] | 109 | ipmi_fru_info_area.cpp \ | 
| Dhruvaraj Subhashchandran | e0af720 | 2017-07-12 06:35:20 -0500 | [diff] [blame] | 110 | read_fru_data.cpp \ | 
| Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 111 | sensordatahandler.cpp \ | 
| Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 112 | user_channel/channelcommands.cpp \ | 
| Johnathan Mantey | b87034e | 2019-09-16 10:50:50 -0700 | [diff] [blame] | 113 | $(libipmi20_la_TRANSPORTOEM) \ | 
| Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 114 | $(libipmi20_BUILT_LIST) | 
| Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 115 |  | 
| Willy Tu | 83c8d1a | 2021-06-15 17:48:06 -0700 | [diff] [blame] | 116 | if FEATURE_DYNAMIC_SENSORS | 
|  | 117 | else | 
|  | 118 | libipmi20_la_SOURCES += \ | 
|  | 119 | sensorhandler.cpp \ | 
|  | 120 | storagehandler.cpp | 
|  | 121 | endif | 
|  | 122 |  | 
| Emily Shaffer | c07e72c | 2018-06-18 10:37:31 -0700 | [diff] [blame] | 123 | check_PROGRAMS = | 
|  | 124 | XFAIL_TESTS = | 
|  | 125 |  | 
|  | 126 | TESTS = $(check_PROGRAMS) | 
|  | 127 |  | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 128 | libipmi20_la_LIBADD = \ | 
|  | 129 | libipmid/libipmid.la \ | 
| Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 130 | user_channel/libchannellayer.la | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 131 | libipmi20_la_LDFLAGS = \ | 
|  | 132 | $(SYSTEMD_LIBS) \ | 
|  | 133 | $(libmapper_LIBS) \ | 
|  | 134 | $(PHOSPHOR_LOGGING_LIBS) \ | 
|  | 135 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ | 
|  | 136 | -lstdc++fs \ | 
| Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 137 | -lboost_coroutine \ | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 138 | -version-info 0:0:0 -shared | 
| Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 139 | libipmi20_la_CXXFLAGS = $(COMMON_CXX) | 
| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 140 |  | 
| ofery | 61d8dcc | 2019-06-10 16:02:37 -0700 | [diff] [blame] | 141 | if FEATURE_LIBUSERLAYER | 
| William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 142 | providers_LTLIBRARIES += libusercmds.la | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 143 | libusercmds_la_LIBADD = \ | 
|  | 144 | libipmid/libipmid.la \ | 
| Richard Marian Thomaiyar | a4e09e4 | 2019-03-02 20:08:32 +0530 | [diff] [blame] | 145 | user_channel/libuserlayer.la \ | 
|  | 146 | user_channel/libchannellayer.la | 
| William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 147 | libusercmds_la_SOURCES = \ | 
| Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 148 | user_channel/usercommands.cpp | 
| William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 149 | libusercmds_la_LDFLAGS = \ | 
|  | 150 | $(PHOSPHOR_LOGGING_LIBS) \ | 
| Suryakanth Sekar | 90b00c7 | 2019-01-16 10:37:57 +0530 | [diff] [blame] | 151 | $(libmapper_LIBS) \ | 
| William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 152 | -version-info 0:0:0 -shared | 
| Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 153 | libusercmds_la_CXXFLAGS = $(COMMON_CXX) | 
| ofery | 61d8dcc | 2019-06-10 16:02:37 -0700 | [diff] [blame] | 154 | endif | 
| William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 155 |  | 
| William A. Kennington III | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 156 | providers_LTLIBRARIES += libsysintfcmds.la | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 157 | libsysintfcmds_la_LIBADD = \ | 
|  | 158 | libipmid/libipmid.la \ | 
|  | 159 | libipmid-host/libipmid-host.la | 
| Tom | 9e5232e | 2016-11-07 12:14:51 +0530 | [diff] [blame] | 160 | libsysintfcmds_la_SOURCES = \ | 
| Andrew Geissler | 1286637 | 2017-03-21 22:58:28 -0500 | [diff] [blame] | 161 | systemintfcmds.cpp \ | 
| Vishwanatha Subbanna | 3eb117a | 2017-07-12 16:13:49 +0530 | [diff] [blame] | 162 | host-interface.cpp | 
| Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 163 | libsysintfcmds_la_LDFLAGS = \ | 
|  | 164 | $(SYSTEMD_LIBS) \ | 
|  | 165 | $(libmapper_LIBS) \ | 
|  | 166 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ | 
|  | 167 | $(PHOSPHOR_LOGGING_LIBS) \ | 
|  | 168 | $(SDBUSPLUS_LIBS) \ | 
|  | 169 | -version-info 0:0:0 -shared | 
| Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 170 | libsysintfcmds_la_CXXFLAGS = $(COMMON_CXX) | 
| Andrew Geissler | dd2c6fd | 2017-03-16 15:53:20 -0500 | [diff] [blame] | 171 |  | 
| Willy Tu | de54f48 | 2021-01-26 15:59:09 -0800 | [diff] [blame] | 172 | if FEATURE_DYNAMIC_SENSORS | 
|  | 173 | providers_LTLIBRARIES += libdynamiccmds.la | 
|  | 174 | libdynamiccmds_la_LIBADD = \ | 
|  | 175 | libipmid/libipmid.la | 
| Scron Chang | 2703b02 | 2021-07-06 15:47:45 +0800 | [diff] [blame] | 176 | if FEATURE_HYBRID_SENSORS | 
|  | 177 | libdynamiccmds_la_LIBADD += libipmi20.la | 
|  | 178 | endif | 
| Willy Tu | de54f48 | 2021-01-26 15:59:09 -0800 | [diff] [blame] | 179 | libdynamiccmds_la_SOURCES = \ | 
|  | 180 | dbus-sdr/sensorcommands.cpp \ | 
|  | 181 | dbus-sdr/storagecommands.cpp \ | 
|  | 182 | dbus-sdr/sdrutils.cpp \ | 
|  | 183 | dbus-sdr/sensorutils.cpp | 
|  | 184 | libdynamiccmds_la_LDFLAGS = \ | 
|  | 185 | $(PHOSPHOR_LOGGING_LIBS) \ | 
|  | 186 | $(libmapper_LIBS) \ | 
|  | 187 | -version-info 0:0:0 -shared | 
|  | 188 | libdynamiccmds_la_CXXFLAGS = $(COMMON_CXX) | 
|  | 189 | endif | 
|  | 190 |  | 
| Vernon Mauery | e9f8857 | 2020-01-30 16:11:34 -0800 | [diff] [blame] | 191 | if FEATURE_IPMI_WHITELIST | 
| Vernon Mauery | 783dc07 | 2018-10-08 12:05:20 -0700 | [diff] [blame] | 192 | libwhitelistdir = ${libdir}/ipmid-providers | 
|  | 193 | libwhitelist_LTLIBRARIES = libwhitelist.la | 
|  | 194 | libwhitelist_la_SOURCES = \ | 
|  | 195 | whitelist-filter.cpp | 
|  | 196 | libwhitelist_la_LDFLAGS = \ | 
|  | 197 | $(SYSTEMD_LIBS) \ | 
|  | 198 | $(libmapper_LIBS) \ | 
|  | 199 | $(PHOSPHOR_LOGGING_LIBS) \ | 
|  | 200 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ | 
|  | 201 | -version-info 0:0:0 -shared | 
|  | 202 | libwhitelist_la_CXXFLAGS = $(COMMON_CXX) | 
|  | 203 | nodist_libwhitelist_la_SOURCES = ipmiwhitelist.cpp | 
| Vernon Mauery | e9f8857 | 2020-01-30 16:11:34 -0800 | [diff] [blame] | 204 | endif | 
| Vernon Mauery | 783dc07 | 2018-10-08 12:05:20 -0700 | [diff] [blame] | 205 |  | 
| Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 206 | nobase_include_HEADERS = \ | 
| AppaRao Puli | 071f3f2 | 2018-05-24 16:45:30 +0530 | [diff] [blame] | 207 | user_channel/channel_layer.hpp \ | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 208 | user_channel/user_layer.hpp | 
| Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 209 |  | 
| Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 210 | # Forcing the build of self and then subdir | 
| William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 211 | SUBDIRS = include libipmid libipmid-host user_channel . test softoff |