Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 1 | noinst_PROGRAMS = burn_my_bmc |
| 2 | |
| 3 | burn_my_bmc_SOURCES = main.cpp |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 4 | burn_my_bmc_LDADD = libupdater.la $(CODE_COVERAGE_LIBS) |
| 5 | burn_my_bmc_CXXFLAGS = -I$(top_srcdir) $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 6 | |
| 7 | noinst_LTLIBRARIES = libupdater.la |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 8 | libupdater_la_LDFLAGS = -static $(CODE_COVERAGE_LIBS) |
| 9 | libupdater_la_CXXFLAGS = -I$(top_srcdir) $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 10 | libupdater_la_SOURCES = \ |
Patrick Venture | af69625 | 2018-12-11 10:22:14 -0800 | [diff] [blame] | 11 | updater.cpp \ |
| 12 | bt.cpp \ |
Patrick Venture | 0088759 | 2018-12-11 10:57:06 -0800 | [diff] [blame] | 13 | lpc.cpp \ |
Patrick Venture | cf2d1b1 | 2018-12-11 18:22:36 -0800 | [diff] [blame] | 14 | blob_handler.cpp \ |
Patrick Venture | 9b750aa | 2018-12-12 14:26:18 -0800 | [diff] [blame] | 15 | ipmi_handler.cpp \ |
Patrick Venture | b5a9706 | 2018-12-13 16:55:23 -0800 | [diff] [blame] | 16 | crc.cpp \ |
Patrick Venture | 030b1a8 | 2019-01-18 08:33:02 -0800 | [diff] [blame] | 17 | io.cpp \ |
Patrick Venture | b5a9706 | 2018-12-13 16:55:23 -0800 | [diff] [blame] | 18 | ../internal/sys.cpp |