blob: 430994b366821ba62d7963ffc315d8511eaa647f [file] [log] [blame]
Patrick Georgib3db79e2011-04-21 18:48:50 +02001##
Patrick Georgib3db79e2011-04-21 18:48:50 +02002##
3## Copyright (C) 2008 Advanced Micro Devices, Inc.
4## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
5## Copyright (C) 2011 secunet Security Networks AG
6##
7## Redistribution and use in source and binary forms, with or without
8## modification, are permitted provided that the following conditions
9## are met:
10## 1. Redistributions of source code must retain the above copyright
11## notice, this list of conditions and the following disclaimer.
12## 2. Redistributions in binary form must reproduce the above copyright
13## notice, this list of conditions and the following disclaimer in the
14## documentation and/or other materials provided with the distribution.
15## 3. The name of the author may not be used to endorse or promote products
16## derived from this software without specific prior written permission.
17##
18## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28## SUCH DAMAGE.
29##
30
31export KERNELVERSION := 0.2.0
32
Gabe Black51edd542013-09-30 23:00:33 -070033ARCHDIR-$(CONFIG_LP_ARCH_ARM) := arm
Furquan Shaikh8c8c3772014-02-19 11:35:30 -080034ARCHDIR-$(CONFIG_LP_ARCH_ARM64) := arm64
Gabe Black1ee2c6d2013-08-09 04:27:35 -070035ARCHDIR-$(CONFIG_LP_ARCH_X86) := x86
Jakub Czapiga3d91b472021-09-15 14:52:45 +020036ARCHDIR-$(CONFIG_LP_ARCH_MOCK) := mock
Tadas Slotkus09ea8ea2011-07-15 03:41:11 +030037DESTDIR ?= install
Patrick Georgib3db79e2011-04-21 18:48:50 +020038
39real-target: lib
40
Gabe Black1ee2c6d2013-08-09 04:27:35 -070041classes-$(CONFIG_LP_PCI) += libpci
42classes-$(CONFIG_LP_LIBC) += libc
43classes-$(CONFIG_LP_CURSES) += libcurses
44classes-$(CONFIG_LP_PDCURSES) += libmenu libform libpanel
45classes-$(CONFIG_LP_CBFS) += libcbfs
46classes-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070047classes-$(CONFIG_LP_LZ4) += liblz4
Julius Werner50a81742014-05-15 11:57:38 -070048classes-$(CONFIG_LP_REMOTEGDB) += libgdb
Jakub Czapiga1fa3da42021-12-06 09:01:50 +000049classes-$(CONFIG_LP_VBOOT_LIB) += vboot_fw
50classes-$(CONFIG_LP_VBOOT_LIB) += tlcl
Patrick Georgib3db79e2011-04-21 18:48:50 +020051libraries := $(classes-y)
52classes-y += head.o
53
Patrick Georgib3db79e2011-04-21 18:48:50 +020054subdirs-y := arch/$(ARCHDIR-y)
Julius Werner50a81742014-05-15 11:57:38 -070055subdirs-y += crypto libc drivers libpci gdb
Gabe Black1ee2c6d2013-08-09 04:27:35 -070056subdirs-$(CONFIG_LP_CURSES) += curses
57subdirs-$(CONFIG_LP_CBFS) += libcbfs
58subdirs-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070059subdirs-$(CONFIG_LP_LZ4) += liblz4
Jakub Czapiga1fa3da42021-12-06 09:01:50 +000060subdirs-$(CONFIG_LP_VBOOT_LIB) += vboot
Patrick Georgib3db79e2011-04-21 18:48:50 +020061
Jacob Garberc98baa72020-11-04 21:49:49 -070062INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj)
63INCLUDES += -include include/kconfig.h -include include/compiler.h
Jakub Czapiga39b2e7a2021-11-23 09:21:30 +000064INCLUDES += -I$(coreboottop)/src/commonlib/bsd/include
Patrick Georgi49f0f9a2022-01-27 15:28:13 +010065INCLUDES += -I$(VBOOT_SOURCE)/firmware/include
Stefan Reinauer1b4d3942015-06-29 15:47:34 -070066
Jakub Czapigac35659d2021-08-26 14:35:10 +020067CFLAGS += $(INCLUDES) -Os -pipe -nostdinc -ggdb3
Stefan Reinauer08c41502013-05-21 14:45:28 -070068CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer
Stefan Reinauere5595362015-07-01 11:30:03 -070069CFLAGS += -ffunction-sections -fdata-sections
Jacob Garber9cd53c52019-06-27 13:23:38 -060070CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wvla
Jacob Garber5f7b1162019-07-19 17:35:28 -060071CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Wimplicit-fallthrough
Vadim Bendebury19c3da52014-05-15 14:12:54 -070072CFLAGS += -Wstrict-aliasing -Wshadow -Werror
Patrick Georgib3db79e2011-04-21 18:48:50 +020073
Jacob Garber04540f12019-10-02 18:55:07 -060074ifeq ($(CONFIG_LP_LTO),y)
75CFLAGS += -flto
76endif
77
Nico Huber1dba2ed2020-11-14 23:46:10 +010078$(obj)/libpayload.config: $(DOTCONFIG)
79 cp $< $@
80
81$(obj)/libpayload-config.h: $(KCONFIG_AUTOHEADER) $(obj)/libpayload.config
Patrick Georgib3db79e2011-04-21 18:48:50 +020082 cmp $@ $< 2>/dev/null || cp $< $@
83
84library-targets = $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
85lib: $$(library-targets) $(obj)/head.o
86
Patrick Georgi3b77b722011-07-07 15:41:53 +020087extract_nth=$(word $(1), $(subst |, ,$(2)))
88
89#######################################################################
Martin Roth6116f362016-03-08 12:32:40 -070090# Add handler for special include files
Patrick Georgi3b77b722011-07-07 15:41:53 +020091$(call add-special-class,includes)
92includes-handler= \
93 $(if $(wildcard $(1)$(call extract_nth,1,$(2))), \
94 $(eval includes += $(1)$(2)))
95
Patrick Georgib3db79e2011-04-21 18:48:50 +020096$(obj)/libpayload.a: $(foreach class,$(libraries),$$($(class)-objs))
Martin Roth6116f362016-03-08 12:32:40 -070097 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Jakub Czapiga28a97a22022-01-18 14:22:22 +000098 printf "create $@\n$(foreach objc,$(filter-out %.a,$^),addmod $(objc)\n)$(foreach lib,$(filter %.a,$^),addlib $(lib)\n)save\nend\n" | $(AR) -M
Patrick Georgib3db79e2011-04-21 18:48:50 +020099
100$(obj)/%.a: $$(%-objs)
Martin Roth6116f362016-03-08 12:32:40 -0700101 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Jakub Czapiga28a97a22022-01-18 14:22:22 +0000102 printf "create $@\n$(foreach objc,$(filter-out %.a,$^),addmod $(objc)\n)$(foreach lib,$(filter %.a,$^),addlib $(lib)\n)save\nend\n" | $(AR) -M
Patrick Georgib3db79e2011-04-21 18:48:50 +0200103
104$(obj)/head.o: $(obj)/arch/$(ARCHDIR-y)/head.head.o.o
Martin Roth6116f362016-03-08 12:32:40 -0700105 printf " CP $(subst $(CURDIR)/,,$(@))\n"
Patrick Georgib3db79e2011-04-21 18:48:50 +0200106 cp $^ $@
107
108install: real-target
109 printf " INSTALL $(DESTDIR)/libpayload/lib\n"
110 install -m 755 -d $(DESTDIR)/libpayload/lib
111 for lib in $(library-targets); do \
112 install -m 644 $$lib $(DESTDIR)/libpayload/lib/; \
113 done
Ronald G. Minnichc2e8cf52013-02-14 11:32:29 -0800114 install -m 644 arch/$(ARCHDIR-y)/libpayload.ldscript $(DESTDIR)/libpayload/lib/
Patrick Georgib3db79e2011-04-21 18:48:50 +0200115 install -m 755 -d $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
116 install -m 644 $(obj)/head.o $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
117 printf " INSTALL $(DESTDIR)/libpayload/include\n"
118 install -m 755 -d $(DESTDIR)/libpayload/include
119 for file in `find include -name *.h -type f`; do \
120 install -m 755 -d $(DESTDIR)/libpayload/`dirname $$file`; \
121 install -m 644 $$file $(DESTDIR)/libpayload/$$file; \
122 done
Jakub Czapiga0b25e002021-12-06 13:03:56 +0000123 for file in `find $(coreboottop)/src/commonlib/bsd/include -name *.h -type f`; do \
124 dest_file=$$(realpath --relative-to=$(coreboottop)/src/commonlib/bsd/ $$file); \
125 install -m 755 -d "$(DESTDIR)/libpayload/`dirname $$dest_file`"; \
126 install -m 644 "$$file" "$(DESTDIR)/libpayload/$$dest_file"; \
127 done
Patrick Georgib3db79e2011-04-21 18:48:50 +0200128 install -m 644 $(obj)/libpayload-config.h $(DESTDIR)/libpayload/include
Patrick Georgi3b77b722011-07-07 15:41:53 +0200129 $(foreach item,$(includes), \
130 install -m 755 -d $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); \
131 install -m 644 $(call extract_nth,1,$(item)) $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); )
Jakub Czapiga395f5b32022-01-12 09:59:39 +0000132 printf " INSTALL $(DESTDIR)/libpayload/vboot\n"
133 install -m 755 -d $(DESTDIR)/libpayload/vboot
134 for file in `find $(VBOOT_SOURCE)/firmware/include \
135 $(VBOOT_SOURCE)/firmware/2lib/include \
136 -iname '*.h' -type f \
137 | sed 's,$(VBOOT_SOURCE)/firmware/,,'`; do \
138 install -m 755 -d $(DESTDIR)/libpayload/vboot/$$(dirname $$file); \
139 install -m 644 $(VBOOT_SOURCE)/firmware/$$file $(DESTDIR)/libpayload/vboot/$$file ; \
140 done
Patrick Georgib3db79e2011-04-21 18:48:50 +0200141 printf " INSTALL $(DESTDIR)/libpayload/bin\n"
142 install -m 755 -d $(DESTDIR)/libpayload/bin
143 install -m 755 bin/lpgcc $(DESTDIR)/libpayload/bin
144 install -m 755 bin/lpas $(DESTDIR)/libpayload/bin
145 install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin
Stefan Reinauer658e4d32013-01-17 12:29:51 -0800146 install -m 644 $(DOTCONFIG) $(DESTDIR)/libpayload/libpayload.config
Nico Huber1823d532020-11-16 22:50:49 +0100147 install -m 755 $(xcompile) $(DESTDIR)/libpayload/libpayload.xcompile
Patrick Georgib3db79e2011-04-21 18:48:50 +0200148
149clean-for-update-target:
150 rm -f $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
151
152clean-target:
153prepare:
Patrick Georgi34286b82013-12-21 21:08:53 +0100154
155junit.xml:
156 echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
Jakub Czapiga12ae8502021-10-08 09:57:14 +0000157 for i in $(filter-out %.old %.unit-tests,$(wildcard configs/*)); do \
Patrick Georgi34286b82013-12-21 21:08:53 +0100158 $(MAKE) clean; \
Keith Short31af70d2019-07-11 17:54:57 -0600159 echo "Building libpayload for $$i"; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600160 cp "$$i" junit_config; \
161 $(MAKE) olddefconfig DOTCONFIG=junit_config V=$(V) Q=$(Q) 2>/dev/null >/dev/null; \
Patrick Georgi34286b82013-12-21 21:08:53 +0100162 echo "<testcase classname='libpayload' name='$$i'>" >> $@.tmp; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600163 $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=junit_config >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \
Patrick Georgi34286b82013-12-21 21:08:53 +0100164 if [ $$type = "failure" ]; then \
165 echo "<failure type='buildFailed'>" >> $@.tmp; \
166 else \
167 echo "<$$type>" >> $@.tmp; \
168 fi; \
169 echo '<![CDATA[' >> $@.tmp; \
170 cat $@.tmp.2 >> $@.tmp; \
171 echo "]]></$$type>" >>$@.tmp; \
172 rm -f $@.tmp.2; \
173 echo "</testcase>" >> $@.tmp; \
174 done
175 echo "</testsuite>" >> $@.tmp
Keith Short31af70d2019-07-11 17:54:57 -0600176 echo "libpayload build complete, test results in $@"
Patrick Georgi34286b82013-12-21 21:08:53 +0100177 mv $@.tmp $@
Martin Roth6c9c1962017-08-03 09:25:43 -0600178
179test-configs:
Jakub Czapiga12ae8502021-10-08 09:57:14 +0000180 for config in $(filter-out %.old %.unit-tests,$(wildcard configs/*)); do \
Martin Roth6c9c1962017-08-03 09:25:43 -0600181 $(MAKE) clean; \
182 cp "$$config" test_config; \
183 echo "*** Making libpayload config $$config ***"; \
184 $(MAKE) olddefconfig DOTCONFIG=test_config V=$(V) Q=$(Q) ; \
185 $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=test_config; \
186 done