Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the coreboot project. |
| 3 | ## |
| 4 | ## Copyright (C) 2011 secunet Security Networks AG |
| 5 | ## |
| 6 | ## This program is free software; you can redistribute it and/or modify |
| 7 | ## it under the terms of the GNU General Public License as published by |
| 8 | ## the Free Software Foundation; version 2 of the License. |
| 9 | ## |
| 10 | ## This program is distributed in the hope that it will be useful, |
| 11 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | ## GNU General Public License for more details. |
| 14 | ## |
| 15 | ## You should have received a copy of the GNU General Public License |
| 16 | ## along with this program; if not, write to the Free Software |
| 17 | ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 18 | ## |
| 19 | |
| 20 | ####################################################################### |
| 21 | # misleadingly named, this is the coreboot version |
zbao | d51f974 | 2012-07-23 12:11:59 +0800 | [diff] [blame] | 22 | export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; then git describe --dirty 2>/dev/null || git describe; else echo unknown; fi) |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 23 | |
| 24 | ####################################################################### |
| 25 | # Basic component discovery |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 26 | MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR)) |
| 27 | export MAINBOARDDIR |
| 28 | |
Kyösti Mälkki | 0db2ae3a | 2012-04-19 12:00:06 +0300 | [diff] [blame] | 29 | ## Final build results, which CBFSTOOL uses to create the final |
| 30 | ## rom image file, are placed under $(objcbfs). |
| 31 | ## These typically have suffixes .debug .elf .bin and .map |
Stefan Reinauer | a60ca36 | 2012-08-09 11:09:44 -0700 | [diff] [blame] | 32 | export objcbfs := $(obj)/cbfs/$(call strip_quotes,$(CONFIG_CBFS_PREFIX)) |
Kyösti Mälkki | 0db2ae3a | 2012-04-19 12:00:06 +0300 | [diff] [blame] | 33 | |
| 34 | ## Based on the active configuration, Makefile conditionally collects |
| 35 | ## the required assembly includes and saves them in a file. |
| 36 | ## Such files that do not have a clear one-to-one relation to a source |
| 37 | ## file under src/ are placed and built under $(objgenerated) |
| 38 | export objgenerated := $(obj)/generated |
| 39 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 40 | ####################################################################### |
| 41 | # root rule to resolve if in build mode (ie. configuration exists) |
| 42 | real-target: $(obj)/config.h coreboot |
Kyösti Mälkki | 0db2ae3a | 2012-04-19 12:00:06 +0300 | [diff] [blame] | 43 | coreboot: build-dirs $(obj)/coreboot.rom |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 44 | |
| 45 | ####################################################################### |
| 46 | # our phony targets |
Kyösti Mälkki | 0db2ae3a | 2012-04-19 12:00:06 +0300 | [diff] [blame] | 47 | PHONY+= clean-abuild coreboot lint lint-stable build-dirs |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 48 | |
| 49 | ####################################################################### |
| 50 | # root source directories of coreboot |
Stefan Reinauer | 8d71155 | 2012-11-30 12:34:04 -0800 | [diff] [blame] | 51 | subdirs-y := src/lib src/console src/device src/ec src/southbridge |
Kyösti Mälkki | 2a830d0 | 2011-12-01 17:49:43 +0200 | [diff] [blame] | 52 | subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode |
Patrick Georgi | 499fc92 | 2012-03-09 10:53:52 +0100 | [diff] [blame] | 53 | subdirs-y += util/cbfstool util/sconfig util/nvramtool |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 54 | subdirs-y += src/arch/$(ARCHDIR-y) |
| 55 | subdirs-y += src/mainboard/$(MAINBOARDDIR) |
| 56 | |
Patrick Georgi | a25828d | 2011-09-02 09:57:01 +0200 | [diff] [blame] | 57 | subdirs-y += site-local |
| 58 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 59 | ####################################################################### |
| 60 | # Add source classes and their build options |
Patrick Georgi | 23f38cd | 2012-11-16 14:50:32 +0100 | [diff] [blame] | 61 | classes-y := ramstage romstage smm cpu_microcode |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 62 | |
Patrick Georgi | f33e395 | 2012-11-25 17:10:47 +0100 | [diff] [blame] | 63 | ####################################################################### |
| 64 | # Helper functions for ramstage postprocess |
| 65 | spc := |
| 66 | spc += |
| 67 | $(spc) := |
| 68 | $(spc) += |
| 69 | |
| 70 | # files-in-dir-recursive,dir,files |
| 71 | files-in-dir-recursive=$(filter $(1)%,$(2)) |
| 72 | |
| 73 | # parent-dir,dir/ |
| 74 | parent-dir=$(dir $(subst $( ),/,$(strip $(subst /, ,$(1))))) |
| 75 | |
| 76 | # filters out exactly the directory specified |
| 77 | # filter-out-dir,dir_to_keep,dirs |
| 78 | filter-out-dir=$(filter-out $(1),$(2)) |
| 79 | |
| 80 | # filters out dir_to_keep and all its parents |
| 81 | # filter-out-dirs,dir_to_keep,dirs |
| 82 | filter-out-dirs=$(if $(filter-out ./,$(1)),$(call filter-out-dirs,$(call parent-dir,$(1)),$(call filter-out-dir,$(1),$(2))),$(call filter-out-dir,$(1),$(2))) |
| 83 | |
| 84 | # dir-wildcards,dirs |
| 85 | dir-wildcards=$(addsuffix %,$(1)) |
| 86 | |
| 87 | # files-in-dir,dir,files |
| 88 | files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(dir $(2)))),$(call files-in-dir-recursive,$(1),$(2))) |
| 89 | |
| 90 | ####################################################################### |
| 91 | # reduce command line length by linking the objects of each |
| 92 | # directory into an intermediate file |
| 93 | ramstage-postprocess=$(foreach d,$(sort $(dir $(1))), \ |
| 94 | $(eval $(d)ramstage.o: $(call files-in-dir,$(d),$(1)); $$(LD) -o $$@ -r $$^ ) \ |
| 95 | $(eval ramstage-objs:=$(d)ramstage.o $(filter-out $(call files-in-dir,$(d),$(1)),$(ramstage-objs)))) |
| 96 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 97 | romstage-c-ccopts:=-D__PRE_RAM__ |
Stefan Reinauer | 61aee5f | 2011-04-10 04:15:23 +0000 | [diff] [blame] | 98 | romstage-S-ccopts:=-D__PRE_RAM__ |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 99 | ifeq ($(CONFIG_TRACE),y) |
| 100 | ramstage-c-ccopts:= -finstrument-functions |
| 101 | endif |
| 102 | |
Patrick Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 103 | ifeq ($(CONFIG_USE_BLOBS),y) |
| 104 | forgetthis:=$(shell git submodule update --init --checkout 3rdparty) |
| 105 | else |
| 106 | ifeq ($(CONFIG_REQUIRES_BLOB),y) |
| 107 | $(error Your current configuration requires binary-only components, but you did not choose to use them) |
| 108 | endif |
| 109 | endif |
| 110 | |
Stefan Reinauer | 24ef134 | 2011-04-14 22:28:00 +0000 | [diff] [blame] | 111 | smm-c-ccopts:=-D__SMM__ |
| 112 | smm-S-ccopts:=-D__SMM__ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 113 | |
Stefan Reinauer | 3aa067f | 2012-04-02 13:24:04 -0700 | [diff] [blame] | 114 | # SMM TSEG base is dynamic |
| 115 | ifeq ($(CONFIG_SMM_TSEG),y) |
| 116 | smm-c-ccopts += -fpic |
| 117 | endif |
| 118 | |
Patrick Georgi | 57205c7 | 2011-03-08 20:49:18 +0000 | [diff] [blame] | 119 | ramstage-c-deps:=$$(OPTION_TABLE_H) |
| 120 | romstage-c-deps:=$$(OPTION_TABLE_H) |
| 121 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 122 | ####################################################################### |
| 123 | # Add handler to compile ACPI's ASL |
| 124 | define ramstage-objs_asl_template |
Sven Schnelle | d69438e | 2011-03-29 09:01:10 +0000 | [diff] [blame] | 125 | $(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 126 | @printf " IASL $$(subst $(top)/,,$$(@))\n" |
Patrick Georgi | c0e16e7 | 2012-05-05 15:11:22 +0200 | [diff] [blame] | 127 | $(CC) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(src)/include/kconfig.h -I$(obj) -I$(src) -I$(src)/include -I$(src)/arch/$(ARCHDIR-y)/include -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl |
Marc Jones | 2aac3f6 | 2011-08-08 16:07:50 -0600 | [diff] [blame] | 128 | cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl |
Patrick Georgi | b2a4264 | 2011-06-01 19:54:16 +0000 | [diff] [blame] | 129 | mv $$(basename $$@).hex $$(basename $$@).c |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 130 | $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c |
| 131 | # keep %.o: %.c rule from catching the temporary .c file after a make clean |
| 132 | mv $$(basename $$@).c $$(basename $$@).hex |
| 133 | endef |
| 134 | |
| 135 | ####################################################################### |
Patrick Georgi | 3bbd2bf | 2012-03-09 12:30:07 +0100 | [diff] [blame] | 136 | # Parse plaintext cmos defaults into binary format |
| 137 | # arg1: source file |
| 138 | # arg2: binary file name |
| 139 | cbfs-files-processor-nvramtool= \ |
| 140 | $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \ |
| 141 | printf " CREATE $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2)) |
| 142 | |
| 143 | ####################################################################### |
Patrick Georgi | 843005c | 2012-04-30 23:15:17 +0200 | [diff] [blame] | 144 | # Link VSA binary to ELF-ish stage |
| 145 | # arg1: source file |
| 146 | # arg2: binary file name |
| 147 | cbfs-files-processor-vsa= \ |
| 148 | $(eval $(2): $(1) ; \ |
| 149 | printf " CREATE $(2) (from $(1))\n"; $(OBJCOPY) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && $(LD) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2)) |
| 150 | |
| 151 | ####################################################################### |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 152 | # Add handler for arbitrary files in CBFS |
| 153 | $(call add-special-class,cbfs-files) |
| 154 | cbfs-files-handler= \ |
Patrick Georgi | 3bbd2bf | 2012-03-09 12:30:07 +0100 | [diff] [blame] | 155 | $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \ |
Patrick Georgi | 1fc2bda | 2012-11-15 14:51:54 +0100 | [diff] [blame] | 156 | $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 157 | $(if $(wildcard $(1)$($(2)-file)), \ |
| 158 | $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \ |
| 159 | $(eval tmp-cbfs-file:= $($(2)-file))) \ |
Patrick Georgi | 3bbd2bf | 2012-03-09 12:30:07 +0100 | [diff] [blame] | 160 | $(if $(tmp-cbfs-method), \ |
| 161 | $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \ |
Patrick Georgi | 16c7ad7 | 2012-09-21 18:11:59 +0200 | [diff] [blame] | 162 | $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \ |
Patrick Georgi | 3bbd2bf | 2012-03-09 12:30:07 +0100 | [diff] [blame] | 163 | $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \ |
Dave Frodin | 0013bbf | 2012-08-14 11:01:53 -0600 | [diff] [blame] | 164 | $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$($(2)-position)) \ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 165 | $(eval $(2)-name:=) \ |
| 166 | $(eval $(2)-type:=) \ |
Dave Frodin | 0013bbf | 2012-08-14 11:01:53 -0600 | [diff] [blame] | 167 | $(eval $(2)-compression:=) \ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 168 | $(eval $(2)-position:=) |
| 169 | |
| 170 | ####################################################################### |
| 171 | # a variety of flags for our build |
Stefan Reinauer | 6321758 | 2012-10-29 16:52:36 -0700 | [diff] [blame] | 172 | CBFS_COMPRESS_FLAG:=none |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 173 | ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y) |
Stefan Reinauer | 6321758 | 2012-10-29 16:52:36 -0700 | [diff] [blame] | 174 | CBFS_COMPRESS_FLAG:=LZMA |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 175 | endif |
| 176 | |
Stefan Reinauer | 6321758 | 2012-10-29 16:52:36 -0700 | [diff] [blame] | 177 | CBFS_PAYLOAD_COMPRESS_FLAG:=none |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 178 | ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y) |
Stefan Reinauer | 6321758 | 2012-10-29 16:52:36 -0700 | [diff] [blame] | 179 | CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 180 | endif |
| 181 | |
| 182 | ifneq ($(CONFIG_LOCALVERSION),"") |
| 183 | COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION)) |
| 184 | endif |
| 185 | |
| 186 | INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include |
Stefan Reinauer | 8d71155 | 2012-11-30 12:34:04 -0800 | [diff] [blame] | 187 | INCLUDES += -Isrc/device/oprom/include |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 188 | # abspath is a workaround for romcc |
Patrick Georgi | c0e16e7 | 2012-05-05 15:11:22 +0200 | [diff] [blame] | 189 | INCLUDES += -include $(src)/include/kconfig.h |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 190 | |
Frank Vibrans | ec40260 | 2011-05-05 16:45:36 +0000 | [diff] [blame] | 191 | CFLAGS = $(INCLUDES) -Os -pipe -g -nostdinc |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 192 | CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes |
| 193 | CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs |
| 194 | CFLAGS += -Wstrict-aliasing -Wshadow |
| 195 | ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y) |
| 196 | CFLAGS += -Werror |
| 197 | endif |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 198 | CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer |
| 199 | |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 200 | additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool $(objutil)/options |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 201 | |
| 202 | ####################################################################### |
| 203 | # generate build support files |
| 204 | $(obj)/build.h: .xcompile |
| 205 | @printf " GEN build.h\n" |
| 206 | rm -f $(obj)/build.h |
| 207 | printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht |
| 208 | printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht |
| 209 | printf "#define __BUILD_H\n\n" >> $(obj)/build.ht |
Patrick Georgi | b8e9ba9 | 2011-03-17 07:47:49 +0000 | [diff] [blame] | 210 | printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >> $(obj)/build.ht |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 211 | printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht |
| 212 | printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht |
Zheng Bao | 0e6d0ed | 2012-11-09 19:55:04 +0800 | [diff] [blame] | 213 | printf "#define COREBOOT_BUILD_YEAR_BCD 0x`LANG= date +"%y"`\n" >> $(obj)/build.ht |
| 214 | printf "#define COREBOOT_BUILD_MONTH_BCD 0x`LANG= date +"%m"`\n" >> $(obj)/build.ht |
| 215 | printf "#define COREBOOT_BUILD_DAY_BCD 0x`LANG= date +"%d"`\n" >> $(obj)/build.ht |
| 216 | printf "#define COREBOOT_BUILD_WEEKDAY_BCD 0x`LANG= date +"%w"`\n" >> $(obj)/build.ht |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 217 | printf "#define COREBOOT_DMI_DATE \"`LANG= date +"%m/%d/%Y"`\"\n" >> $(obj)/build.ht |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 218 | printf "\n" >> $(obj)/build.ht |
| 219 | printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 220 | printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 221 | printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 222 | printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht |
| 223 | printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht |
Zheng Bao | 86aa7c4 | 2012-09-28 16:06:44 +0800 | [diff] [blame] | 224 | printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null || hostname 2>/dev/null)\"\n" >> $(obj)/build.ht |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 225 | printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht |
| 226 | printf "#endif\n" >> $(obj)/build.ht |
| 227 | mv $(obj)/build.ht $(obj)/build.h |
| 228 | |
| 229 | $(obj)/ldoptions: $(obj)/config.h |
| 230 | awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@ |
| 231 | |
Kyösti Mälkki | 0db2ae3a | 2012-04-19 12:00:06 +0300 | [diff] [blame] | 232 | build-dirs: |
| 233 | mkdir -p $(objcbfs) $(objgenerated) |
| 234 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 235 | ####################################################################### |
| 236 | # Build the tools |
| 237 | CBFSTOOL:=$(obj)/cbfstool |
| 238 | |
| 239 | $(CBFSTOOL): $(objutil)/cbfstool/cbfstool |
| 240 | cp $< $@ |
| 241 | |
| 242 | _WINCHECK=$(shell uname -o 2> /dev/null) |
| 243 | STACK= |
| 244 | ifeq ($(_WINCHECK),Msys) |
| 245 | STACK=-Wl,--stack,16384000 |
| 246 | endif |
| 247 | ifeq ($(_WINCHECK),Cygwin) |
| 248 | STACK=-Wl,--stack,16384000 |
| 249 | endif |
| 250 | |
| 251 | ROMCC:= $(objutil)/romcc/romcc |
| 252 | $(ROMCC): $(top)/util/romcc/romcc.c |
| 253 | @printf " HOSTCC $(subst $(obj)/,,$(@)) (this may take a while)\n" |
| 254 | @# Note: Adding -O2 here might cause problems. For details see: |
| 255 | @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html |
| 256 | $(HOSTCC) -g $(STACK) -Wall -o $@ $< |
| 257 | |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 258 | IFDTOOL:=$(objutil)/ifdtool/ifdtool |
| 259 | $(IFDTOOL): $(top)/util/ifdtool/ifdtool.c |
| 260 | @printf " HOSTCC $(subst $(obj)/,,$(@))\n" |
| 261 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< |
| 262 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 263 | ####################################################################### |
| 264 | # needed objects that every mainboard uses |
| 265 | # Creation of these is architecture and mainboard independent |
| 266 | $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb $(objutil)/sconfig/sconfig |
| 267 | @printf " SCONFIG $(subst $(src)/,,$(<))\n" |
| 268 | mkdir -p $(obj)/mainboard/$(MAINBOARDDIR) |
| 269 | $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR) |
| 270 | |
| 271 | ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c |
Stefan Reinauer | 57879c9 | 2012-07-31 16:47:25 -0700 | [diff] [blame] | 272 | romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 273 | |
| 274 | $(objutil)/%.o: $(objutil)/%.c |
| 275 | @printf " HOSTCC $(subst $(objutil)/,,$(@))\n" |
| 276 | $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $< |
| 277 | |
Patrick Georgi | 64ccc3b8 | 2011-05-20 23:08:12 +0000 | [diff] [blame] | 278 | $(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H) |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 279 | @printf " CC $(subst $(obj)/,,$(@))\n" |
| 280 | $(CC) -MMD $(CFLAGS) -c -o $@ $< |
| 281 | |
Stefan Reinauer | 57879c9 | 2012-07-31 16:47:25 -0700 | [diff] [blame] | 282 | $(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H) |
| 283 | @printf " CC $(subst $(obj)/,,$(@))\n" |
| 284 | $(CC) -MMD -D__PRE_RAM__ $(CFLAGS) -c -o $@ $< |
| 285 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 286 | ####################################################################### |
| 287 | # Clean up rules |
| 288 | clean-abuild: |
| 289 | rm -rf coreboot-builds |
| 290 | |
| 291 | clean-for-update-target: |
| 292 | rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a |
| 293 | rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.* |
| 294 | rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript |
| 295 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot |
| 296 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm |
| 297 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc |
| 298 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.* |
| 299 | rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm |
Marc Jones | 1dd0dda | 2012-03-19 17:32:33 -0600 | [diff] [blame] | 300 | $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC)" LD="$(LD)" |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 301 | |
| 302 | clean-target: |
| 303 | rm -f $(obj)/coreboot* |
| 304 | |
| 305 | ####################################################################### |
| 306 | # Development utilities |
| 307 | printcrt0s: |
| 308 | @echo crt0s=$(crt0s) |
| 309 | @echo ldscripts=$(ldscripts) |
| 310 | |
| 311 | update: |
| 312 | dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF |
| 313 | |
Patrick Georgi | cb02cb7 | 2012-02-25 19:42:59 +0100 | [diff] [blame] | 314 | lint lint-stable: |
Zheng Bao | 533bca8 | 2012-09-28 19:38:37 +0800 | [diff] [blame] | 315 | FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \ |
Patrick Georgi | cb02cb7 | 2012-02-25 19:42:59 +0100 | [diff] [blame] | 316 | for script in util/lint/$@-*; do \ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 317 | echo; echo `basename $$script`; \ |
| 318 | grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \ |
| 319 | echo ========; \ |
| 320 | $$script > $$LINTLOG; \ |
Patrick Georgi | c040e476 | 2012-03-09 23:02:09 +0100 | [diff] [blame] | 321 | if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \ |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 322 | printf "success\n\n"; \ |
| 323 | else \ |
| 324 | echo test failed: ; \ |
| 325 | cat $$LINTLOG; \ |
| 326 | rm -f $$LINTLOG; \ |
| 327 | FAILED=$$(( $$FAILED + 1 )); \ |
| 328 | fi; \ |
| 329 | echo ========; \ |
| 330 | done; \ |
| 331 | test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \ |
| 332 | rm -f $$LINTLOG |
Patrick Georgi | 6c44550 | 2011-05-16 15:32:28 +0000 | [diff] [blame] | 333 | |
Patrick Georgi | bb60528 | 2011-06-05 15:15:49 +0200 | [diff] [blame] | 334 | gitconfig: |
Zheng Bao | 50ad095 | 2012-10-22 16:29:37 +0800 | [diff] [blame] | 335 | mkdir -p .git/hooks |
zbao | f2c3254 | 2012-08-10 15:44:02 +0800 | [diff] [blame] | 336 | for hook in commit-msg pre-commit ; do \ |
| 337 | if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \ |
| 338 | ! -x .git/hooks/$$hook ]; then \ |
| 339 | cp util/gitconfig/$$hook .git/hooks/$$hook; \ |
| 340 | chmod +x .git/hooks/$$hook; \ |
| 341 | fi; \ |
| 342 | done |
Ronald G. Minnich | 64b364d | 2013-01-03 08:26:09 -0800 | [diff] [blame^] | 343 | git config remote.origin.push HEAD:refs/for/master |
Patrick Georgi | bb60528 | 2011-06-05 15:15:49 +0200 | [diff] [blame] | 344 | (git config --global user.name >/dev/null && git config --global user.email >/dev/null) || (printf 'Please configure your name and email in git:\n\n git config --global user.name "Your Name Comes Here"\n git config --global user.email your.email@example.com\n'; exit 1) |
| 345 | |
Patrick Georgi | 6c44550 | 2011-05-16 15:32:28 +0000 | [diff] [blame] | 346 | crossgcc: clean-for-update |
Peter Stuge | 0b6b4d6 | 2011-06-09 05:06:25 +0200 | [diff] [blame] | 347 | $(MAKE) -C util/crossgcc build-without-gdb |
| 348 | |
| 349 | crosstools: clean-for-update |
Patrick Georgi | 6c44550 | 2011-05-16 15:32:28 +0000 | [diff] [blame] | 350 | $(MAKE) -C util/crossgcc build |
| 351 | |
| 352 | crossgcc-clean: clean-for-update |
| 353 | $(MAKE) -C util/crossgcc clean |
| 354 | |
Patrick Georgi | 43105d6 | 2011-11-05 14:44:41 +0100 | [diff] [blame] | 355 | tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/nvramtool/nvramtool $(objutil)/romcc/romcc $(objutil)/sconfig/sconfig |
| 356 | |