Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | AM_DEFAULT_SOURCE_EXT = .cpp |
| 2 | |
Patrick Venture | 94feffa | 2019-03-06 09:54:49 -0800 | [diff] [blame] | 3 | # Ignore system headers |
| 4 | CODE_COVERAGE_IGNORE_PATTERN = '/include/*' '/usr/include/*' '$(includedir)/*' |
| 5 | export CODE_COVERAGE_IGNORE_PATTERN |
| 6 | |
| 7 | CODE_COVERAGE_LCOV_SHOPTS = $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) |
| 8 | # Use our configuration file for lcov |
| 9 | CODE_COVERAGE_LCOV_SHOPTS += --config-file $(abs_srcdir)/.lcovrc |
| 10 | export CODE_COVERAGE_LCOV_SHOPTS |
| 11 | |
| 12 | CODE_COVERAGE_LCOV_OPTIONS = $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) |
| 13 | # Use our configuration file for lcov |
| 14 | CODE_COVERAGE_LCOV_OPTIONS += --config-file $(abs_srcdir)/.lcovrc |
| 15 | export CODE_COVERAGE_LCOV_OPTIONS |
| 16 | |
| 17 | CODE_COVERAGE_LCOV_RMOPTS = $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) |
| 18 | # Use our configuration file for lcov |
| 19 | CODE_COVERAGE_LCOV_RMOPTS += --config-file $(abs_srcdir)/.lcovrc |
| 20 | export CODE_COVERAGE_LCOV_RMOPTS |
| 21 | |
| 22 | CODE_COVERAGE_GENHTML_OPTIONS = $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) |
| 23 | # Use our configuration file for genhtml |
| 24 | CODE_COVERAGE_GENHTML_OPTIONS += --config-file $(abs_srcdir)/.lcovrc |
| 25 | # Don't generate the absolute path for each file in the HTML output |
| 26 | CODE_COVERAGE_GENHTML_OPTIONS += --prefix $(abs_srcdir) --prefix $(abs_builddir) |
| 27 | export CODE_COVERAGE_GENHTML_OPTIONS |
| 28 | |
Patrick Venture | 90e9dbc | 2019-03-19 09:10:41 -0700 | [diff] [blame^] | 29 | if AUTOCONF_CODE_COVERAGE_2019_01_06 |
| 30 | include $(top_srcdir)/aminclude_static.am |
| 31 | clean-local: code-coverage-clean |
| 32 | distclean-local: code-coverage-dist-clean |
| 33 | else |
| 34 | @CODE_COVERAGE_RULES@ |
| 35 | endif |
| 36 | |
Patrick Venture | 94feffa | 2019-03-06 09:54:49 -0800 | [diff] [blame] | 37 | AM_CPPFLAGS = $(CODE_COVERAGE_CPPFLAGS) |
| 38 | AM_CFLAGS = $(CODE_COVERAGE_CFLAGS) |
| 39 | AM_CXXFLAGS = $(CODE_COVERAGE_CXXFLAGS) |
| 40 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 41 | sbin_PROGRAMS = swampd setsensor |
| 42 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 43 | setsensor_SOURCES = setsensor.cpp |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 44 | setsensor_LDADD = \ |
| 45 | $(SDBUSPLUS_LIBS) \ |
| 46 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Patrick Venture | 94feffa | 2019-03-06 09:54:49 -0800 | [diff] [blame] | 47 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 48 | $(CODE_COVERAGE_LIBS) |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 49 | setsensor_CXXFLAGS = \ |
| 50 | $(SDBUSPLUS_CFLAGS) \ |
| 51 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Patrick Venture | f427411 | 2019-03-06 13:37:46 -0800 | [diff] [blame] | 52 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
| 53 | $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 54 | |
| 55 | swampd_SOURCES = main.cpp util.cpp |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 56 | swampd_LDADD = \ |
| 57 | $(SDBUSPLUS_LIBS) \ |
| 58 | $(PTHREAD_LIBS) \ |
| 59 | libswampd.la |
| 60 | swampd_CXXFLAGS = \ |
| 61 | $(SDBUSPLUS_CFLAGS) \ |
Patrick Venture | f427411 | 2019-03-06 13:37:46 -0800 | [diff] [blame] | 62 | $(PTHREAD_CFLAGS) \ |
| 63 | $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 64 | |
| 65 | noinst_LTLIBRARIES = libswampd.la |
| 66 | libswampd_la_LDFLAGS = -static |
| 67 | libswampd_la_LIBADD = \ |
| 68 | -lstdc++fs \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 69 | $(SDBUSPLUS_LIBS) \ |
| 70 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
Patrick Venture | 94feffa | 2019-03-06 09:54:49 -0800 | [diff] [blame] | 71 | $(PHOSPHOR_LOGGING_LIBS) \ |
| 72 | $(CODE_COVERAGE_LIBS) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 73 | libswampd_la_CXXFLAGS = \ |
| 74 | $(SDBUSPLUS_CFLAGS) \ |
| 75 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
Patrick Venture | f0b7fa3 | 2018-11-09 08:40:32 -0800 | [diff] [blame] | 76 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
Patrick Venture | f427411 | 2019-03-06 13:37:46 -0800 | [diff] [blame] | 77 | $(CODE_COVERAGE_CXXFLAGS) \ |
Patrick Venture | f0b7fa3 | 2018-11-09 08:40:32 -0800 | [diff] [blame] | 78 | -flto |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 79 | |
| 80 | libswampd_la_SOURCES = \ |
| 81 | notimpl/readonly.cpp \ |
| 82 | notimpl/writeonly.cpp \ |
| 83 | dbus/util.cpp \ |
| 84 | dbus/dbuspassive.cpp \ |
| 85 | dbus/dbusactiveread.cpp \ |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 86 | dbus/dbuswrite.cpp \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 87 | sysfs/sysfsread.cpp \ |
| 88 | sysfs/sysfswrite.cpp \ |
| 89 | sysfs/util.cpp \ |
| 90 | sensors/pluggable.cpp \ |
| 91 | sensors/host.cpp \ |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 92 | sensors/builder.cpp \ |
Patrick Venture | eeeb867 | 2019-02-08 11:47:42 -0800 | [diff] [blame] | 93 | sensors/buildjson.cpp \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 94 | sensors/manager.cpp \ |
| 95 | pid/ec/pid.cpp \ |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 96 | pid/ec/stepwise.cpp \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 97 | pid/fancontroller.cpp \ |
| 98 | pid/thermalcontroller.cpp \ |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 99 | pid/pidcontroller.cpp \ |
| 100 | pid/stepwisecontroller.cpp \ |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 101 | pid/builder.cpp \ |
Patrick Venture | d149172 | 2019-02-08 14:37:45 -0800 | [diff] [blame] | 102 | pid/buildjson.cpp \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 103 | pid/zone.cpp \ |
| 104 | pid/util.cpp \ |
| 105 | pid/pidthread.cpp \ |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 106 | pid/tuning.cpp \ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 107 | threads/busthread.cpp \ |
Patrick Venture | 5426c34 | 2019-02-11 12:03:30 -0800 | [diff] [blame] | 108 | build/buildjson.cpp \ |
Patrick Venture | 18b1311 | 2019-02-14 11:43:59 -0800 | [diff] [blame] | 109 | experiments/drive.cpp |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 110 | |
Patrick Venture | 9f04441 | 2018-09-20 19:49:55 -0700 | [diff] [blame] | 111 | if CONFIGURE_DBUS |
| 112 | libswampd_la_SOURCES += dbus/dbusconfiguration.cpp |
| 113 | endif |
| 114 | |
Patrick Venture | ba00343 | 2018-07-27 06:59:05 -0700 | [diff] [blame] | 115 | libmanualcmdsdir = ${libdir}/ipmid-providers |
| 116 | libmanualcmds_LTLIBRARIES = libmanualcmds.la |
| 117 | libmanualcmds_la_SOURCES = \ |
| 118 | ipmi/manualcmds.cpp |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 119 | libmanualcmds_la_LDFLAGS = \ |
| 120 | $(SYSTEMD_LIBS) \ |
| 121 | $(PHOSPHOR_DBUS_INTERFACES_LIBS) \ |
| 122 | $(PHOSPHOR_LOGGING_LIBS) \ |
William A. Kennington III | 331143c | 2019-02-07 15:52:44 -0800 | [diff] [blame] | 123 | $(LIBIPMID_LIBS) \ |
Patrick Venture | 94feffa | 2019-03-06 09:54:49 -0800 | [diff] [blame] | 124 | $(CODE_COVERAGE_LIBS) \ |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 125 | -version-info 0:0:0 -shared |
| 126 | libmanualcmds_la_CXXFLAGS = \ |
| 127 | $(SYSTEMD_CFLAGS) \ |
| 128 | $(PHOSPHOR_DBUS_INTERFACES_CFLAGS) \ |
| 129 | $(PHOSPHOR_LOGGING_CFLAGS) \ |
William A. Kennington III | 331143c | 2019-02-07 15:52:44 -0800 | [diff] [blame] | 130 | $(LIBIPMID_CFLAGS) \ |
Patrick Venture | f427411 | 2019-03-06 13:37:46 -0800 | [diff] [blame] | 131 | $(CODE_COVERAGE_CXXFLAGS) \ |
Patrick Venture | ba3c8c1 | 2018-11-09 08:43:00 -0800 | [diff] [blame] | 132 | -flto |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 133 | |
Patrick Venture | 7a841b6 | 2018-06-13 09:39:46 -0700 | [diff] [blame] | 134 | SUBDIRS = . test |