blob: fc679dd27e7527686e968a09006c9b170e3a0f03 [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
Tadas Slotkus09ea8ea2011-07-15 03:41:11 +030036DESTDIR ?= install
Patrick Georgib3db79e2011-04-21 18:48:50 +020037
38real-target: lib
39
Gabe Black1ee2c6d2013-08-09 04:27:35 -070040classes-$(CONFIG_LP_PCI) += libpci
41classes-$(CONFIG_LP_LIBC) += libc
42classes-$(CONFIG_LP_CURSES) += libcurses
43classes-$(CONFIG_LP_PDCURSES) += libmenu libform libpanel
44classes-$(CONFIG_LP_CBFS) += libcbfs
45classes-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070046classes-$(CONFIG_LP_LZ4) += liblz4
Julius Werner50a81742014-05-15 11:57:38 -070047classes-$(CONFIG_LP_REMOTEGDB) += libgdb
Patrick Georgib3db79e2011-04-21 18:48:50 +020048libraries := $(classes-y)
49classes-y += head.o
50
Patrick Georgib3db79e2011-04-21 18:48:50 +020051subdirs-y := arch/$(ARCHDIR-y)
Julius Werner50a81742014-05-15 11:57:38 -070052subdirs-y += crypto libc drivers libpci gdb
Gabe Black1ee2c6d2013-08-09 04:27:35 -070053subdirs-$(CONFIG_LP_CURSES) += curses
54subdirs-$(CONFIG_LP_CBFS) += libcbfs
55subdirs-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070056subdirs-$(CONFIG_LP_LZ4) += liblz4
Patrick Georgib3db79e2011-04-21 18:48:50 +020057
Jacob Garberc98baa72020-11-04 21:49:49 -070058INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj)
59INCLUDES += -include include/kconfig.h -include include/compiler.h
Stefan Reinauer1b4d3942015-06-29 15:47:34 -070060
Patrick Georgi9b8c7382015-07-06 09:09:30 +000061CFLAGS += $(EXTRA_CFLAGS) $(INCLUDES) -Os -pipe -nostdinc -ggdb3
Stefan Reinauer08c41502013-05-21 14:45:28 -070062CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer
Stefan Reinauere5595362015-07-01 11:30:03 -070063CFLAGS += -ffunction-sections -fdata-sections
Jacob Garber9cd53c52019-06-27 13:23:38 -060064CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wvla
Jacob Garber5f7b1162019-07-19 17:35:28 -060065CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Wimplicit-fallthrough
Vadim Bendebury19c3da52014-05-15 14:12:54 -070066CFLAGS += -Wstrict-aliasing -Wshadow -Werror
Patrick Georgib3db79e2011-04-21 18:48:50 +020067
Jacob Garber04540f12019-10-02 18:55:07 -060068ifeq ($(CONFIG_LP_LTO),y)
69CFLAGS += -flto
70endif
71
Nico Huber1dba2ed2020-11-14 23:46:10 +010072$(obj)/libpayload.config: $(DOTCONFIG)
73 cp $< $@
74
75$(obj)/libpayload-config.h: $(KCONFIG_AUTOHEADER) $(obj)/libpayload.config
Patrick Georgib3db79e2011-04-21 18:48:50 +020076 cmp $@ $< 2>/dev/null || cp $< $@
77
78library-targets = $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
79lib: $$(library-targets) $(obj)/head.o
80
Patrick Georgi3b77b722011-07-07 15:41:53 +020081extract_nth=$(word $(1), $(subst |, ,$(2)))
82
83#######################################################################
Martin Roth6116f362016-03-08 12:32:40 -070084# Add handler for special include files
Patrick Georgi3b77b722011-07-07 15:41:53 +020085$(call add-special-class,includes)
86includes-handler= \
87 $(if $(wildcard $(1)$(call extract_nth,1,$(2))), \
88 $(eval includes += $(1)$(2)))
89
Patrick Georgib3db79e2011-04-21 18:48:50 +020090$(obj)/libpayload.a: $(foreach class,$(libraries),$$($(class)-objs))
Martin Roth6116f362016-03-08 12:32:40 -070091 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Patrick Georgib3db79e2011-04-21 18:48:50 +020092 $(AR) rc $@ $^
93
94$(obj)/%.a: $$(%-objs)
Martin Roth6116f362016-03-08 12:32:40 -070095 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Patrick Georgib3db79e2011-04-21 18:48:50 +020096 $(AR) rc $@ $^
97
98$(obj)/head.o: $(obj)/arch/$(ARCHDIR-y)/head.head.o.o
Martin Roth6116f362016-03-08 12:32:40 -070099 printf " CP $(subst $(CURDIR)/,,$(@))\n"
Patrick Georgib3db79e2011-04-21 18:48:50 +0200100 cp $^ $@
101
102install: real-target
103 printf " INSTALL $(DESTDIR)/libpayload/lib\n"
104 install -m 755 -d $(DESTDIR)/libpayload/lib
105 for lib in $(library-targets); do \
106 install -m 644 $$lib $(DESTDIR)/libpayload/lib/; \
107 done
Ronald G. Minnichc2e8cf52013-02-14 11:32:29 -0800108 install -m 644 arch/$(ARCHDIR-y)/libpayload.ldscript $(DESTDIR)/libpayload/lib/
Patrick Georgib3db79e2011-04-21 18:48:50 +0200109 install -m 755 -d $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
110 install -m 644 $(obj)/head.o $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
111 printf " INSTALL $(DESTDIR)/libpayload/include\n"
112 install -m 755 -d $(DESTDIR)/libpayload/include
113 for file in `find include -name *.h -type f`; do \
114 install -m 755 -d $(DESTDIR)/libpayload/`dirname $$file`; \
115 install -m 644 $$file $(DESTDIR)/libpayload/$$file; \
116 done
117 install -m 644 $(obj)/libpayload-config.h $(DESTDIR)/libpayload/include
Patrick Georgi3b77b722011-07-07 15:41:53 +0200118 $(foreach item,$(includes), \
119 install -m 755 -d $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); \
120 install -m 644 $(call extract_nth,1,$(item)) $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); )
Patrick Georgib3db79e2011-04-21 18:48:50 +0200121 printf " INSTALL $(DESTDIR)/libpayload/bin\n"
122 install -m 755 -d $(DESTDIR)/libpayload/bin
123 install -m 755 bin/lpgcc $(DESTDIR)/libpayload/bin
124 install -m 755 bin/lpas $(DESTDIR)/libpayload/bin
125 install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin
Stefan Reinauer658e4d32013-01-17 12:29:51 -0800126 install -m 644 $(DOTCONFIG) $(DESTDIR)/libpayload/libpayload.config
Nico Huber1823d532020-11-16 22:50:49 +0100127 install -m 755 $(xcompile) $(DESTDIR)/libpayload/libpayload.xcompile
Patrick Georgib3db79e2011-04-21 18:48:50 +0200128
129clean-for-update-target:
130 rm -f $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
131
132clean-target:
133prepare:
Patrick Georgi34286b82013-12-21 21:08:53 +0100134
135junit.xml:
136 echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
137 for i in $(filter-out %.old,$(wildcard configs/*)); do \
138 $(MAKE) clean; \
Keith Short31af70d2019-07-11 17:54:57 -0600139 echo "Building libpayload for $$i"; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600140 cp "$$i" junit_config; \
141 $(MAKE) olddefconfig DOTCONFIG=junit_config V=$(V) Q=$(Q) 2>/dev/null >/dev/null; \
Patrick Georgi34286b82013-12-21 21:08:53 +0100142 echo "<testcase classname='libpayload' name='$$i'>" >> $@.tmp; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600143 $(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 +0100144 if [ $$type = "failure" ]; then \
145 echo "<failure type='buildFailed'>" >> $@.tmp; \
146 else \
147 echo "<$$type>" >> $@.tmp; \
148 fi; \
149 echo '<![CDATA[' >> $@.tmp; \
150 cat $@.tmp.2 >> $@.tmp; \
151 echo "]]></$$type>" >>$@.tmp; \
152 rm -f $@.tmp.2; \
153 echo "</testcase>" >> $@.tmp; \
154 done
155 echo "</testsuite>" >> $@.tmp
Keith Short31af70d2019-07-11 17:54:57 -0600156 echo "libpayload build complete, test results in $@"
Patrick Georgi34286b82013-12-21 21:08:53 +0100157 mv $@.tmp $@
Martin Roth6c9c1962017-08-03 09:25:43 -0600158
159test-configs:
160 for config in $(filter-out %.old,$(wildcard configs/*)); do \
161 $(MAKE) clean; \
162 cp "$$config" test_config; \
163 echo "*** Making libpayload config $$config ***"; \
164 $(MAKE) olddefconfig DOTCONFIG=test_config V=$(V) Q=$(Q) ; \
165 $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=test_config; \
166 done