Patrick Venture | 1597a72 | 2019-06-27 10:55:00 -0700 | [diff] [blame] | 1 | bin_PROGRAMS = burn_my_bmc |
Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 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) |
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 5 | burn_my_bmc_CXXFLAGS = \ |
6 | -I$(top_srcdir) \ | ||||
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 7 | $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 8 | |
9 | noinst_LTLIBRARIES = libupdater.la | ||||
Benjamin Fair | e5aafa5 | 2020-06-05 21:04:24 -0700 | [diff] [blame] | 10 | libupdater_la_LDFLAGS = \ |
11 | -static \ | ||||
12 | $(CODE_COVERAGE_LIBS) \ | ||||
13 | $(FMT_LIBS) \ | ||||
14 | $(IPMIBLOB_LIBS) \ | ||||
15 | $(PCIACCESS_LIBS) \ | ||||
16 | $(STDPLUS_LIBS) | ||||
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 17 | libupdater_la_CXXFLAGS = \ |
18 | -I$(top_srcdir) \ | ||||
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 19 | $(CODE_COVERAGE_CXXFLAGS) \ |
Benjamin Fair | e5aafa5 | 2020-06-05 21:04:24 -0700 | [diff] [blame] | 20 | $(FMT_CFLAGS) \ |
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 21 | $(IPMIBLOB_CFLAGS) \ |
Benjamin Fair | e5aafa5 | 2020-06-05 21:04:24 -0700 | [diff] [blame] | 22 | $(PCIACCESS_CFLAGS) \ |
23 | $(STDPLUS_CFLAGS) | ||||
Patrick Venture | bf58cd6 | 2018-12-11 09:05:46 -0800 | [diff] [blame] | 24 | libupdater_la_SOURCES = \ |
Patrick Venture | af69625 | 2018-12-11 10:22:14 -0800 | [diff] [blame] | 25 | updater.cpp \ |
Patrick Venture | 01123b2 | 2019-06-20 13:49:06 -0700 | [diff] [blame] | 26 | handler.cpp \ |
27 | helper.cpp \ | ||||
Patrick Venture | af69625 | 2018-12-11 10:22:14 -0800 | [diff] [blame] | 28 | bt.cpp \ |
Patrick Venture | 0088759 | 2018-12-11 10:57:06 -0800 | [diff] [blame] | 29 | lpc.cpp \ |
Patrick Venture | 030b1a8 | 2019-01-18 08:33:02 -0800 | [diff] [blame] | 30 | io.cpp \ |
Benjamin Fair | 30d09a3 | 2019-10-11 16:57:47 -0700 | [diff] [blame] | 31 | net.cpp \ |
Patrick Venture | b5bf0fc | 2019-05-03 14:33:49 -0700 | [diff] [blame] | 32 | pci.cpp \ |
Benjamin Fair | 20a1809 | 2020-06-08 11:12:21 -0700 | [diff] [blame] | 33 | pciaccess.cpp \ |
Patrick Venture | cf9b219 | 2019-06-27 12:09:52 -0700 | [diff] [blame] | 34 | p2a.cpp \ |
35 | progress.cpp | ||||
Patrick Venture | 1ff1f93 | 2019-06-27 09:57:37 -0700 | [diff] [blame] | 36 | libupdater_la_LIBADD = $(top_builddir)/libfirmware_common.la |
Patrick Venture | 380832c | 2019-06-19 10:54:44 -0700 | [diff] [blame] | 37 | |
38 | SUBDIRS = . test |