Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the libpayload project. |
| 3 | ## |
| 4 | ## Copyright (C) 2008 Advanced Micro Devices, Inc. |
| 5 | ## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de> |
| 6 | ## Copyright (C) 2011 secunet Security Networks AG |
| 7 | ## |
| 8 | ## Redistribution and use in source and binary forms, with or without |
| 9 | ## modification, are permitted provided that the following conditions |
| 10 | ## are met: |
| 11 | ## 1. Redistributions of source code must retain the above copyright |
| 12 | ## notice, this list of conditions and the following disclaimer. |
| 13 | ## 2. Redistributions in binary form must reproduce the above copyright |
| 14 | ## notice, this list of conditions and the following disclaimer in the |
| 15 | ## documentation and/or other materials provided with the distribution. |
| 16 | ## 3. The name of the author may not be used to endorse or promote products |
| 17 | ## derived from this software without specific prior written permission. |
| 18 | ## |
| 19 | ## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 20 | ## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 21 | ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 22 | ## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 23 | ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 24 | ## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 25 | ## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 26 | ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 27 | ## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 28 | ## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 29 | ## SUCH DAMAGE. |
| 30 | ## |
| 31 | |
| 32 | export KERNELVERSION := 0.2.0 |
| 33 | |
Gabe Black | 51edd54 | 2013-09-30 23:00:33 -0700 | [diff] [blame] | 34 | ARCHDIR-$(CONFIG_LP_ARCH_ARM) := arm |
Furquan Shaikh | 8c8c377 | 2014-02-19 11:35:30 -0800 | [diff] [blame] | 35 | ARCHDIR-$(CONFIG_LP_ARCH_ARM64) := arm64 |
Ionela Voinescu | ce22c02 | 2014-09-24 17:05:33 +0100 | [diff] [blame] | 36 | ARCHDIR-$(CONFIG_LP_ARCH_MIPS) := mips |
Gabe Black | 1ee2c6d | 2013-08-09 04:27:35 -0700 | [diff] [blame] | 37 | ARCHDIR-$(CONFIG_LP_ARCH_X86) := x86 |
Tadas Slotkus | 09ea8ea | 2011-07-15 03:41:11 +0300 | [diff] [blame] | 38 | DESTDIR ?= install |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 39 | |
| 40 | real-target: lib |
| 41 | |
Gabe Black | 1ee2c6d | 2013-08-09 04:27:35 -0700 | [diff] [blame] | 42 | classes-$(CONFIG_LP_PCI) += libpci |
| 43 | classes-$(CONFIG_LP_LIBC) += libc |
| 44 | classes-$(CONFIG_LP_CURSES) += libcurses |
| 45 | classes-$(CONFIG_LP_PDCURSES) += libmenu libform libpanel |
| 46 | classes-$(CONFIG_LP_CBFS) += libcbfs |
| 47 | classes-$(CONFIG_LP_LZMA) += liblzma |
Julius Werner | bf27391 | 2015-06-30 10:30:30 -0700 | [diff] [blame] | 48 | classes-$(CONFIG_LP_LZ4) += liblz4 |
Julius Werner | 50a8174 | 2014-05-15 11:57:38 -0700 | [diff] [blame] | 49 | classes-$(CONFIG_LP_REMOTEGDB) += libgdb |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 50 | libraries := $(classes-y) |
| 51 | classes-y += head.o |
| 52 | |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 53 | subdirs-y := arch/$(ARCHDIR-y) |
Julius Werner | 50a8174 | 2014-05-15 11:57:38 -0700 | [diff] [blame] | 54 | subdirs-y += crypto libc drivers libpci gdb |
Gabe Black | 1ee2c6d | 2013-08-09 04:27:35 -0700 | [diff] [blame] | 55 | subdirs-$(CONFIG_LP_CURSES) += curses |
| 56 | subdirs-$(CONFIG_LP_CBFS) += libcbfs |
| 57 | subdirs-$(CONFIG_LP_LZMA) += liblzma |
Julius Werner | bf27391 | 2015-06-30 10:30:30 -0700 | [diff] [blame] | 58 | subdirs-$(CONFIG_LP_LZ4) += liblz4 |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 59 | |
Stefan Reinauer | 1b4d394 | 2015-06-29 15:47:34 -0700 | [diff] [blame] | 60 | INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj) -include include/kconfig.h |
| 61 | |
Patrick Georgi | 9b8c738 | 2015-07-06 09:09:30 +0000 | [diff] [blame] | 62 | CFLAGS += $(EXTRA_CFLAGS) $(INCLUDES) -Os -pipe -nostdinc -ggdb3 |
Stefan Reinauer | 08c4150 | 2013-05-21 14:45:28 -0700 | [diff] [blame] | 63 | CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer |
Stefan Reinauer | e559536 | 2015-07-01 11:30:03 -0700 | [diff] [blame] | 64 | CFLAGS += -ffunction-sections -fdata-sections |
Stefan Reinauer | 08c4150 | 2013-05-21 14:45:28 -0700 | [diff] [blame] | 65 | CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 66 | CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs |
Vadim Bendebury | 19c3da5 | 2014-05-15 14:12:54 -0700 | [diff] [blame] | 67 | CFLAGS += -Wstrict-aliasing -Wshadow -Werror |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 68 | |
| 69 | $(obj)/libpayload-config.h: $(KCONFIG_AUTOHEADER) |
| 70 | cmp $@ $< 2>/dev/null || cp $< $@ |
| 71 | |
| 72 | library-targets = $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a |
| 73 | lib: $$(library-targets) $(obj)/head.o |
| 74 | |
Patrick Georgi | 3b77b72 | 2011-07-07 15:41:53 +0200 | [diff] [blame] | 75 | extract_nth=$(word $(1), $(subst |, ,$(2))) |
| 76 | |
| 77 | ####################################################################### |
| 78 | # Add handler for special include files |
| 79 | $(call add-special-class,includes) |
| 80 | includes-handler= \ |
| 81 | $(if $(wildcard $(1)$(call extract_nth,1,$(2))), \ |
| 82 | $(eval includes += $(1)$(2))) |
| 83 | |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 84 | $(obj)/libpayload.a: $(foreach class,$(libraries),$$($(class)-objs)) |
| 85 | printf " AR $(subst $(shell pwd)/,,$(@))\n" |
| 86 | $(AR) rc $@ $^ |
| 87 | |
| 88 | $(obj)/%.a: $$(%-objs) |
| 89 | printf " AR $(subst $(shell pwd)/,,$(@))\n" |
| 90 | $(AR) rc $@ $^ |
| 91 | |
| 92 | $(obj)/head.o: $(obj)/arch/$(ARCHDIR-y)/head.head.o.o |
| 93 | printf " CP $(subst $(shell pwd)/,,$(@))\n" |
| 94 | cp $^ $@ |
| 95 | |
| 96 | install: real-target |
| 97 | printf " INSTALL $(DESTDIR)/libpayload/lib\n" |
| 98 | install -m 755 -d $(DESTDIR)/libpayload/lib |
| 99 | for lib in $(library-targets); do \ |
| 100 | install -m 644 $$lib $(DESTDIR)/libpayload/lib/; \ |
| 101 | done |
Ronald G. Minnich | c2e8cf5 | 2013-02-14 11:32:29 -0800 | [diff] [blame] | 102 | install -m 644 arch/$(ARCHDIR-y)/libpayload.ldscript $(DESTDIR)/libpayload/lib/ |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 103 | install -m 755 -d $(DESTDIR)/libpayload/lib/$(ARCHDIR-y) |
| 104 | install -m 644 $(obj)/head.o $(DESTDIR)/libpayload/lib/$(ARCHDIR-y) |
| 105 | printf " INSTALL $(DESTDIR)/libpayload/include\n" |
| 106 | install -m 755 -d $(DESTDIR)/libpayload/include |
| 107 | for file in `find include -name *.h -type f`; do \ |
| 108 | install -m 755 -d $(DESTDIR)/libpayload/`dirname $$file`; \ |
| 109 | install -m 644 $$file $(DESTDIR)/libpayload/$$file; \ |
| 110 | done |
| 111 | install -m 644 $(obj)/libpayload-config.h $(DESTDIR)/libpayload/include |
Patrick Georgi | 3b77b72 | 2011-07-07 15:41:53 +0200 | [diff] [blame] | 112 | $(foreach item,$(includes), \ |
| 113 | install -m 755 -d $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); \ |
| 114 | install -m 644 $(call extract_nth,1,$(item)) $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); ) |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 115 | printf " INSTALL $(DESTDIR)/libpayload/bin\n" |
| 116 | install -m 755 -d $(DESTDIR)/libpayload/bin |
| 117 | install -m 755 bin/lpgcc $(DESTDIR)/libpayload/bin |
| 118 | install -m 755 bin/lpas $(DESTDIR)/libpayload/bin |
| 119 | install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin |
Stefan Reinauer | 658e4d3 | 2013-01-17 12:29:51 -0800 | [diff] [blame] | 120 | install -m 644 $(DOTCONFIG) $(DESTDIR)/libpayload/libpayload.config |
Stefan Reinauer | 5d86621 | 2015-07-08 17:09:49 -0700 | [diff] [blame] | 121 | install -m 755 .xcompile $(DESTDIR)/libpayload/libpayload.xcompile |
Patrick Georgi | b3db79e | 2011-04-21 18:48:50 +0200 | [diff] [blame] | 122 | |
| 123 | clean-for-update-target: |
| 124 | rm -f $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a |
| 125 | |
| 126 | clean-target: |
| 127 | prepare: |
Patrick Georgi | 34286b8 | 2013-12-21 21:08:53 +0100 | [diff] [blame] | 128 | |
| 129 | junit.xml: |
| 130 | echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp |
| 131 | for i in $(filter-out %.old,$(wildcard configs/*)); do \ |
| 132 | $(MAKE) clean; \ |
Patrick Georgi | d73c440 | 2015-04-14 10:27:03 +0200 | [diff] [blame] | 133 | yes "" | $(MAKE) oldconfig DOTCONFIG=$$i V=$(V) Q=$(Q) 2>/dev/null >/dev/null; \ |
Patrick Georgi | 34286b8 | 2013-12-21 21:08:53 +0100 | [diff] [blame] | 134 | echo "<testcase classname='libpayload' name='$$i'>" >> $@.tmp; \ |
Stefan Reinauer | 2c6fe44 | 2015-06-29 14:46:40 -0700 | [diff] [blame] | 135 | $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=$$i >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \ |
Patrick Georgi | 34286b8 | 2013-12-21 21:08:53 +0100 | [diff] [blame] | 136 | if [ $$type = "failure" ]; then \ |
| 137 | echo "<failure type='buildFailed'>" >> $@.tmp; \ |
| 138 | else \ |
| 139 | echo "<$$type>" >> $@.tmp; \ |
| 140 | fi; \ |
| 141 | echo '<![CDATA[' >> $@.tmp; \ |
| 142 | cat $@.tmp.2 >> $@.tmp; \ |
| 143 | echo "]]></$$type>" >>$@.tmp; \ |
| 144 | rm -f $@.tmp.2; \ |
| 145 | echo "</testcase>" >> $@.tmp; \ |
| 146 | done |
| 147 | echo "</testsuite>" >> $@.tmp |
| 148 | mv $@.tmp $@ |