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 | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 6 | providersdir = ${libdir}/ipmid-providers |
| 7 | providers_LTLIBRARIES = |
| 8 | |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 9 | sbin_PROGRAMS = \ |
| 10 | ipmid |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 11 | |
| 12 | ipmid_SOURCES = \ |
Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 13 | ipmid-new.cpp \ |
Vishwanatha Subbanna | ac149a9 | 2017-07-11 18:16:50 +0530 | [diff] [blame] | 14 | settings.cpp \ |
| 15 | host-cmd-manager.cpp \ |
Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 16 | utils.cpp |
| 17 | |
Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 18 | libipmi20_BUILT_LIST = \ |
Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 19 | sensor-gen.cpp \ |
Tom Joseph | e19540e | 2019-02-04 14:06:58 +0530 | [diff] [blame] | 20 | inventory-sensor-gen.cpp \ |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 21 | fru-read-gen.cpp \ |
| 22 | entity-gen.cpp |
Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 23 | |
Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 24 | BUILT_SOURCES = \ |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 25 | ipmiwhitelist.cpp \ |
| 26 | $(libipmi20_BUILT_LIST) |
Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 27 | |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 28 | CLEANFILES = $(BUILT_SOURCES) |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 29 | |
Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 30 | COMMON_CXX = \ |
| 31 | -flto \ |
| 32 | -Wno-psabi \ |
| 33 | $(SYSTEMD_CFLAGS) \ |
| 34 | $(libmapper_CFLAGS) \ |
| 35 | $(SDBUSPLUS_CFLAGS) \ |
| 36 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 37 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 38 | -DBOOST_ERROR_CODE_HEADER_ONLY \ |
| 39 | -DBOOST_SYSTEM_NO_DEPRECATED \ |
Vernon Mauery | e7329c7 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 40 | -DBOOST_COROUTINES_NO_DEPRECATION_WARNING \ |
| 41 | -DBOOST_ASIO_DISABLE_THREADS \ |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 42 | -DBOOST_ALL_NO_LIB |
| 43 | |
Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 44 | ipmid_CXXFLAGS = $(COMMON_CXX) |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 45 | ipmid_LDADD = \ |
| 46 | libipmid/libipmid.la \ |
Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 47 | user_channel/libchannellayer.la \ |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 48 | libipmid-host/libipmid-host.la |
Deepak Kodihalli | 18aa044 | 2017-07-21 07:07:09 -0500 | [diff] [blame] | 49 | ipmid_LDFLAGS = \ |
| 50 | $(SYSTEMD_LIBS) \ |
| 51 | $(libmapper_LIBS) \ |
| 52 | $(LIBADD_DLOPEN) \ |
| 53 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 54 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Richard Marian Thomaiyar | 4654d99 | 2018-04-19 05:38:37 +0530 | [diff] [blame] | 55 | $(CRYPTO_LIBS) \ |
Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 56 | -lboost_coroutine \ |
Vernon Mauery | 28565ac | 2018-08-01 09:16:56 -0700 | [diff] [blame] | 57 | -lstdc++fs \ |
Deepak Kodihalli | 18aa044 | 2017-07-21 07:07:09 -0500 | [diff] [blame] | 58 | -export-dynamic |
Vishwanatha Subbanna | ac149a9 | 2017-07-11 18:16:50 +0530 | [diff] [blame] | 59 | |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 60 | # TODO: Rather than use -export-dynamic, we should use -export-symbol to have a |
| 61 | # selective list of symbols. |
| 62 | |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 63 | ipmiwhitelist.cpp: ${srcdir}/generate_whitelist.sh $(WHITELIST_CONF) |
Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 64 | $(SHELL) $^ > $@ |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 65 | |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 66 | sensor-gen.cpp: |
| 67 | $(AM_V_GEN)@SENSORGEN@ -o $(top_builddir) generate-cpp |
| 68 | |
Tom Joseph | d5899e7 | 2017-05-05 11:20:34 +0530 | [diff] [blame] | 69 | inventory-sensor-gen.cpp: |
| 70 | $(AM_V_GEN)@INVSENSORGEN@ -o $(top_builddir) generate-cpp |
| 71 | |
Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 72 | fru-read-gen.cpp: |
| 73 | $(AM_V_GEN)@FRUGEN@ -o $(top_builddir) generate-cpp |
| 74 | |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 75 | entity-gen.cpp: |
| 76 | $(AM_V_GEN)@ENTITYGEN@ -o $(top_builddir) generate-cpp |
| 77 | |
William A. Kennington III | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 78 | providers_LTLIBRARIES += libipmi20.la |
Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 79 | libipmi20_la_SOURCES = \ |
Patrick Venture | 5794fcf | 2017-10-26 11:11:14 -0700 | [diff] [blame] | 80 | app/channel.cpp \ |
Patrick Venture | 5e6ac71 | 2017-10-25 12:16:19 -0700 | [diff] [blame] | 81 | app/watchdog.cpp \ |
William A. Kennington III | 5257525 | 2018-02-09 15:54:56 -0800 | [diff] [blame] | 82 | app/watchdog_service.cpp \ |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 83 | apphandler.cpp \ |
Xo Wang | 069db2f | 2017-08-09 15:31:33 -0700 | [diff] [blame] | 84 | sys_info_param.cpp \ |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 85 | sensorhandler.cpp \ |
| 86 | storagehandler.cpp \ |
| 87 | chassishandler.cpp \ |
| 88 | dcmihandler.cpp \ |
| 89 | ipmisensor.cpp \ |
| 90 | storageaddsel.cpp \ |
| 91 | transporthandler.cpp \ |
| 92 | globalhandler.cpp \ |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 93 | groupext.cpp \ |
Tom Joseph | d5899e7 | 2017-05-05 11:20:34 +0530 | [diff] [blame] | 94 | utils.cpp \ |
Marri Devender Rao | 7d9157e | 2017-07-01 16:11:40 -0500 | [diff] [blame] | 95 | selutility.cpp \ |
Marri Devender Rao | 0acf057 | 2017-07-03 12:25:47 -0500 | [diff] [blame] | 96 | ipmi_fru_info_area.cpp \ |
Dhruvaraj Subhashchandran | e0af720 | 2017-07-12 06:35:20 -0500 | [diff] [blame] | 97 | read_fru_data.cpp \ |
Tom Joseph | a9fbff4 | 2018-01-22 14:59:09 +0530 | [diff] [blame] | 98 | sensordatahandler.cpp \ |
Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 99 | user_channel/channelcommands.cpp \ |
Vernon Mauery | 0248484 | 2018-07-24 09:15:38 -0700 | [diff] [blame] | 100 | $(libipmi20_BUILT_LIST) |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 101 | |
Emily Shaffer | c07e72c | 2018-06-18 10:37:31 -0700 | [diff] [blame] | 102 | @CODE_COVERAGE_RULES@ |
| 103 | |
| 104 | check_PROGRAMS = |
| 105 | XFAIL_TESTS = |
| 106 | |
| 107 | TESTS = $(check_PROGRAMS) |
| 108 | |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 109 | libipmi20_la_LIBADD = \ |
| 110 | libipmid/libipmid.la \ |
Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 111 | user_channel/libchannellayer.la |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 112 | libipmi20_la_LDFLAGS = \ |
| 113 | $(SYSTEMD_LIBS) \ |
| 114 | $(libmapper_LIBS) \ |
| 115 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 116 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 117 | -lstdc++fs \ |
Vernon Mauery | 240b186 | 2018-10-08 12:05:16 -0700 | [diff] [blame] | 118 | -lboost_coroutine \ |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 119 | -version-info 0:0:0 -shared |
Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 120 | libipmi20_la_CXXFLAGS = $(COMMON_CXX) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 121 | |
William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 122 | providers_LTLIBRARIES += libusercmds.la |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 123 | libusercmds_la_LIBADD = \ |
| 124 | libipmid/libipmid.la \ |
| 125 | user_channel/libuserlayer.la |
William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 126 | libusercmds_la_SOURCES = \ |
Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 127 | user_channel/usercommands.cpp |
William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 128 | libusercmds_la_LDFLAGS = \ |
| 129 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 130 | $(LIBS) \ |
| 131 | -version-info 0:0:0 -shared |
Vernon Mauery | 1bb0c7f | 2018-12-21 10:59:19 -0800 | [diff] [blame] | 132 | libusercmds_la_CXXFLAGS = $(COMMON_CXX) |
William A. Kennington III | 343d061 | 2018-12-10 15:56:24 -0800 | [diff] [blame] | 133 | |
William A. Kennington III | 785fb07 | 2018-12-10 15:27:20 -0800 | [diff] [blame] | 134 | providers_LTLIBRARIES += libsysintfcmds.la |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 135 | libsysintfcmds_la_LIBADD = \ |
| 136 | libipmid/libipmid.la \ |
| 137 | libipmid-host/libipmid-host.la |
Tom | 9e5232e | 2016-11-07 12:14:51 +0530 | [diff] [blame] | 138 | libsysintfcmds_la_SOURCES = \ |
Andrew Geissler | 1286637 | 2017-03-21 22:58:28 -0500 | [diff] [blame] | 139 | systemintfcmds.cpp \ |
Vishwanatha Subbanna | 3eb117a | 2017-07-12 16:13:49 +0530 | [diff] [blame] | 140 | host-interface.cpp |
Patrick Venture | c64f802 | 2018-11-14 19:31:15 -0800 | [diff] [blame] | 141 | libsysintfcmds_la_LDFLAGS = \ |
| 142 | $(SYSTEMD_LIBS) \ |
| 143 | $(libmapper_LIBS) \ |
| 144 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 145 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 146 | $(SDBUSPLUS_LIBS) \ |
| 147 | -version-info 0:0:0 -shared |
Vernon Mauery | 1e3455a | 2018-11-30 13:10:54 -0800 | [diff] [blame] | 148 | libsysintfcmds_la_CXXFLAGS = $(COMMON_CXX) |
Andrew Geissler | dd2c6fd | 2017-03-16 15:53:20 -0500 | [diff] [blame] | 149 | |
Vernon Mauery | 783dc07 | 2018-10-08 12:05:20 -0700 | [diff] [blame^] | 150 | libwhitelistdir = ${libdir}/ipmid-providers |
| 151 | libwhitelist_LTLIBRARIES = libwhitelist.la |
| 152 | libwhitelist_la_SOURCES = \ |
| 153 | whitelist-filter.cpp |
| 154 | libwhitelist_la_LDFLAGS = \ |
| 155 | $(SYSTEMD_LIBS) \ |
| 156 | $(libmapper_LIBS) \ |
| 157 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 158 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 159 | -version-info 0:0:0 -shared |
| 160 | libwhitelist_la_CXXFLAGS = $(COMMON_CXX) |
| 161 | nodist_libwhitelist_la_SOURCES = ipmiwhitelist.cpp |
| 162 | |
Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 163 | nobase_include_HEADERS = \ |
AppaRao Puli | 071f3f2 | 2018-05-24 16:45:30 +0530 | [diff] [blame] | 164 | user_channel/channel_layer.hpp \ |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 165 | user_channel/user_layer.hpp |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 166 | |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 167 | # Forcing the build of self and then subdir |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 168 | SUBDIRS = include libipmid libipmid-host user_channel . test softoff |