Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the coreboot project. |
| 3 | ## |
| 4 | ## Copyright (C) 2008 Advanced Micro Devices, Inc. |
| 5 | ## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de> |
Stefan Reinauer | 8ed1b6d | 2010-01-19 21:13:44 +0000 | [diff] [blame] | 6 | ## Copyright (C) 2009-2010 coresystems GmbH |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 7 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 8 | ## This program is free software; you can redistribute it and/or modify |
| 9 | ## it under the terms of the GNU General Public License as published by |
| 10 | ## the Free Software Foundation; version 2 of the License. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 11 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 12 | ## This program is distributed in the hope that it will be useful, |
| 13 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | ## GNU General Public License for more details. |
| 16 | ## |
| 17 | ## You should have received a copy of the GNU General Public License |
| 18 | ## along with this program; if not, write to the Free Software |
| 19 | ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 20 | ## |
| 21 | |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 22 | ifeq ($(INNER_SCANBUILD),y) |
| 23 | CC_real:=$(CC) |
| 24 | endif |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 25 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 26 | $(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile))) |
| 27 | include .xcompile |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 28 | |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 29 | ifeq ($(INNER_SCANBUILD),y) |
| 30 | CC:=$(CC_real) |
| 31 | HOSTCC:=$(CC_real) --hostcc |
| 32 | HOSTCXX:=$(CC_real) --hostcxx |
| 33 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 34 | |
Patrick Georgi | 1a47b5e | 2010-02-10 18:53:40 +0000 | [diff] [blame] | 35 | export top := $(PWD) |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 36 | export src := src |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 37 | export srck := $(top)/util/kconfig |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 38 | export obj ?= build |
Myles Watson | d4e5c0a | 2009-10-28 15:30:11 +0000 | [diff] [blame] | 39 | export objk := $(obj)/util/kconfig |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 40 | |
| 41 | |
Stefan Reinauer | 37d8c21 | 2010-02-08 18:30:41 +0000 | [diff] [blame] | 42 | export KERNELVERSION := 4.0 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 43 | export KCONFIG_AUTOHEADER := $(obj)/config.h |
| 44 | export KCONFIG_AUTOCONFIG := $(obj)/auto.conf |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 45 | |
| 46 | CONFIG_SHELL := sh |
| 47 | KBUILD_DEFCONFIG := configs/defconfig |
| 48 | UNAME_RELEASE := $(shell uname -r) |
| 49 | HAVE_DOTCONFIG := $(wildcard .config) |
| 50 | MAKEFLAGS += -rR --no-print-directory |
| 51 | |
| 52 | # Make is silent per default, but 'make V=1' will show all compiler calls. |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 53 | Q:=@ |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 54 | ifneq ($(V),1) |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 55 | ifneq ($(Q),) |
| 56 | .SILENT: |
| 57 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 58 | endif |
| 59 | |
| 60 | CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 61 | ROMCC:= $(obj)/romcc |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 62 | HOSTCC = gcc |
| 63 | HOSTCXX = g++ |
| 64 | HOSTCFLAGS := -I$(srck) -I$(objk) -g |
| 65 | HOSTCXXFLAGS := -I$(srck) -I$(objk) |
Stefan Reinauer | 68a564f | 2010-03-16 01:02:18 +0000 | [diff] [blame] | 66 | LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && $(CC) -print-libgcc-file-name) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 67 | |
| 68 | DOXYGEN := doxygen |
| 69 | DOXYGEN_OUTPUT_DIR := doxygen |
| 70 | |
| 71 | ifeq ($(strip $(HAVE_DOTCONFIG)),) |
| 72 | |
| 73 | all: config |
| 74 | |
| 75 | else |
| 76 | |
| 77 | include $(top)/.config |
| 78 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 79 | ifneq ($(INNER_SCANBUILD),y) |
| 80 | ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y) |
| 81 | CC:=clang -m32 |
| 82 | HOSTCC:=clang |
| 83 | endif |
| 84 | endif |
| 85 | |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 86 | ifeq ($(CONFIG_CCACHE),y) |
| 87 | CCACHE:=CCACHE_COMPILERCHECK=content $(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))) |
| 88 | ifeq ($(CCACHE),) |
| 89 | $(error ccache selected, but not found in PATH) |
| 90 | endif |
| 91 | CC := $(CCACHE) $(CC) |
| 92 | HOSTCC := $(CCACHE) $(HOSTCC) |
| 93 | HOSTCXX := $(CCACHE) $(HOSTCXX) |
| 94 | ROMCC := $(CCACHE) $(ROMCC) |
| 95 | endif |
| 96 | |
Patrick Georgi | a84e98b | 2010-03-16 19:01:32 +0000 | [diff] [blame] | 97 | strip_quotes = $(subst ",,$(subst \",,$(1))) |
| 98 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 99 | ARCHDIR-$(CONFIG_ARCH_X86) := i386 |
| 100 | ARCHDIR-$(CONFIG_ARCH_POWERPC) := ppc |
| 101 | |
Patrick Georgi | a84e98b | 2010-03-16 19:01:32 +0000 | [diff] [blame] | 102 | MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 103 | export MAINBOARDDIR |
| 104 | |
| 105 | PLATFORM-y += src/arch/$(ARCHDIR-y) src/cpu src/mainboard/$(MAINBOARDDIR) |
| 106 | TARGETS-y := |
| 107 | |
Stefan Reinauer | 859e94a | 2010-03-16 23:07:29 +0000 | [diff] [blame] | 108 | BUILD-y := src/lib src/boot src/console src/devices src/southbridge src/northbridge src/superio src/drivers |
Patrick Georgi | 7e8c9aa | 2010-04-08 11:37:43 +0000 | [diff] [blame] | 109 | BUILD-y += util/cbfstool util/sconfig |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 110 | BUILD-$(CONFIG_ARCH_X86) += src/pc80 |
| 111 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 112 | ifneq ($(CONFIG_LOCALVERSION),"") |
Patrick Georgi | a84e98b | 2010-03-16 19:01:32 +0000 | [diff] [blame] | 113 | COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION)) |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 114 | endif |
| 115 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 116 | # The primary target needs to be here before we include the |
| 117 | # other files |
| 118 | |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 119 | ifeq ($(INNER_SCANBUILD),y) |
| 120 | CONFIG_SCANBUILD_ENABLE:= |
| 121 | endif |
| 122 | |
| 123 | ifeq ($(CONFIG_SCANBUILD_ENABLE),y) |
| 124 | ifneq ($(CONFIG_SCANBUILD_REPORT_LOCATION),) |
| 125 | CONFIG_SCANBUILD_REPORT_LOCATION:=-o $(CONFIG_SCANBUILD_REPORT_LOCATION) |
| 126 | endif |
| 127 | all: |
| 128 | echo '#!/bin/sh' > .ccwrap |
| 129 | echo 'CC="$(CC)"' >> .ccwrap |
| 130 | echo 'if [ "$$1" = "--hostcc" ]; then shift; CC="$(HOSTCC)"; fi' >> .ccwrap |
| 131 | echo 'if [ "$$1" = "--hostcxx" ]; then shift; CC="$(HOSTCXX)"; fi' >> .ccwrap |
| 132 | echo 'eval $$CC $$*' >> .ccwrap |
| 133 | chmod +x .ccwrap |
| 134 | scan-build $(CONFIG_SCANBUILD_REPORT_LOCATION) -analyze-headers --use-cc=$(top)/.ccwrap --use-c++=$(top)/.ccwrap $(MAKE) INNER_SCANBUILD=y |
| 135 | else |
Stefan Reinauer | e9f3258 | 2010-03-29 13:04:13 +0000 | [diff] [blame] | 136 | all: $(obj)/config.h coreboot |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 137 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 138 | |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 139 | # must come rather early |
| 140 | .SECONDEXPANSION: |
| 141 | |
Stefan Reinauer | 1425add | 2010-03-21 22:35:58 +0000 | [diff] [blame] | 142 | $(obj)/config.h: |
| 143 | $(MAKE) oldconfig |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 144 | |
| 145 | ####################################################################### |
| 146 | # Build the tools |
| 147 | |
| 148 | CBFSTOOL:=$(obj)/util/cbfstool/cbfstool |
| 149 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 150 | # needed objects that every mainboard uses |
| 151 | # Creation of these is architecture and mainboard independent |
Patrick Georgi | 7e8c9aa | 2010-04-08 11:37:43 +0000 | [diff] [blame] | 152 | $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb $(obj)/util/sconfig/sconfig |
Stefan Reinauer | e705f9c | 2010-04-08 13:16:32 +0000 | [diff] [blame] | 153 | @printf " SCONFIG $(subst $(src)/,,$(<))\n" |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 154 | mkdir -p $(obj)/mainboard/$(MAINBOARDDIR) |
Patrick Georgi | 7e8c9aa | 2010-04-08 11:37:43 +0000 | [diff] [blame] | 155 | $(obj)/util/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 156 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 157 | objs:=$(obj)/mainboard/$(MAINBOARDDIR)/static.o |
| 158 | initobjs:= |
| 159 | drivers:= |
| 160 | smmobjs:= |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 161 | types:=obj initobj driver smmobj |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 162 | |
| 163 | # Clean -y variables, include Makefile.inc |
| 164 | # If $(3) is non-empty, add paths to files in X-y, and add them to Xs |
| 165 | # Add subdirs-y to subdirs |
| 166 | includemakefiles= \ |
| 167 | $(foreach type,$(2), $(eval $(type)-y:=)) \ |
| 168 | $(eval subdirs-y:=) \ |
| 169 | $(eval -include $(1)) \ |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 170 | $(foreach type,$(2), \ |
| 171 | $(eval $(type)s+= \ |
| 172 | $$(subst $(top)/,, \ |
| 173 | $$(abspath $$(patsubst src/%, \ |
| 174 | $(obj)/%, \ |
| 175 | $$(addprefix $(dir $(1)),$$($(type)-y))))))) \ |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 176 | $(eval subdirs+=$$(subst $(PWD)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y))))) |
| 177 | |
| 178 | # For each path in $(subdirs) call includemakefiles, passing $(1) as $(3) |
| 179 | # Repeat until subdirs is empty |
| 180 | evaluate_subdirs= \ |
| 181 | $(eval cursubdirs:=$(subdirs)) \ |
| 182 | $(eval subdirs:=) \ |
| 183 | $(foreach dir,$(cursubdirs), \ |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 184 | $(eval $(call includemakefiles,$(dir)/Makefile.inc,$(types)))) \ |
| 185 | $(if $(subdirs),$(eval $(call evaluate_subdirs))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 186 | |
| 187 | # collect all object files eligible for building |
| 188 | subdirs:=$(PLATFORM-y) $(BUILD-y) |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 189 | $(eval $(call evaluate_subdirs)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 190 | |
Patrick Georgi | d3428b0 | 2010-02-24 13:18:01 +0000 | [diff] [blame] | 191 | initobjs:=$(addsuffix .initobj.o, $(basename $(initobjs))) |
| 192 | drivers:=$(addsuffix .driver.o, $(basename $(drivers))) |
| 193 | smmobjs:=$(addsuffix .smmobj.o, $(basename $(smmobjs))) |
| 194 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 195 | allobjs:=$(foreach var, $(addsuffix s,$(types)), $($(var))) |
| 196 | alldirs:=$(sort $(abspath $(dir $(allobjs)))) |
| 197 | source_with_ext=$(patsubst $(obj)/%.o,src/%.$(1),$(allobjs)) |
| 198 | allsrc=$(wildcard $(call source_with_ext,c) $(call source_with_ext,S)) |
| 199 | |
Patrick Georgi | 9ea7bff | 2010-02-28 18:23:00 +0000 | [diff] [blame] | 200 | define objs_asl_template |
Patrick Georgi | af97d33 | 2010-02-08 15:46:37 +0000 | [diff] [blame] | 201 | $(obj)/$(1)%.o: src/$(1)%.asl |
Patrick Georgi | 1a47b5e | 2010-02-10 18:53:40 +0000 | [diff] [blame] | 202 | @printf " IASL $$(subst $(top)/,,$$(@))\n" |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 203 | $(CPP) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl |
Patrick Georgi | af97d33 | 2010-02-08 15:46:37 +0000 | [diff] [blame] | 204 | iasl -p $$(basename $$@) -tc $$(basename $$@).asl |
| 205 | mv $$(basename $$@).hex $$(basename $$@).c |
Stefan Reinauer | ae22bcd | 2010-03-05 10:20:28 +0000 | [diff] [blame] | 206 | $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $$@))), -DAmlCode=AmlCode_$$(basename $$(notdir $$@))) -c -o $$@ $$(basename $$@).c |
Patrick Georgi | 88f55b2 | 2009-09-25 18:43:02 +0000 | [diff] [blame] | 207 | endef |
| 208 | |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 209 | # macro to define template macros that are used by use_template macro |
| 210 | define create_cc_template |
| 211 | # $1 obj class (objs, initobjs, ...) |
| 212 | # $2 source suffix (c, S) |
| 213 | # $3 .o infix ("" ".initobj", ...) |
| 214 | # $4 additional compiler flags |
| 215 | de$(EMPTY)fine $(1)_$(2)_template |
Stefan Reinauer | e9f3258 | 2010-03-29 13:04:13 +0000 | [diff] [blame] | 216 | $(obj)/$$(1)%$(3).o: src/$$(1)%.$(2) $(obj)/config.h |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 217 | printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n" |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 218 | $(CC) $(4) -MMD $$$$(CFLAGS) -c -o $$$$@ $$$$< |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 219 | en$(EMPTY)def |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 220 | endef |
| 221 | |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 222 | $(eval $(call create_cc_template,objs,c)) |
| 223 | $(eval $(call create_cc_template,objs,S,,-DASSEMBLY)) |
Stefan Reinauer | e9f3258 | 2010-03-29 13:04:13 +0000 | [diff] [blame] | 224 | $(eval $(call create_cc_template,initobjs,c,.initobj,-D__PRE_RAM__)) |
| 225 | $(eval $(call create_cc_template,initobjs,S,.initobj,-DASSEMBLY -D__PRE_RAM__)) |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 226 | $(eval $(call create_cc_template,drivers,c,.driver)) |
| 227 | $(eval $(call create_cc_template,drivers,S,.driver,-DASSEMBLY)) |
| 228 | $(eval $(call create_cc_template,smmobjs,c,.smmobj)) |
| 229 | $(eval $(call create_cc_template,smmobjs,S,.smmobj)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 230 | |
| 231 | usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d))))) |
| 232 | usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d))))) |
Patrick Georgi | 9ea7bff | 2010-02-28 18:23:00 +0000 | [diff] [blame] | 233 | $(eval $(call usetemplate,objs,asl)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 234 | $(eval $(call usetemplate,objs,c)) |
| 235 | $(eval $(call usetemplate,objs,S)) |
| 236 | $(eval $(call usetemplate,initobjs,c)) |
| 237 | $(eval $(call usetemplate,initobjs,S)) |
| 238 | $(eval $(call usetemplate,drivers,c)) |
| 239 | $(eval $(call usetemplate,drivers,S)) |
| 240 | $(eval $(call usetemplate,smmobjs,c)) |
| 241 | $(eval $(call usetemplate,smmobjs,S)) |
| 242 | |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 243 | DEPENDENCIES = $(objs:.o=.d) $(initobjs:.o=.d) $(drivers:.o=.d) $(smmobjs:.o=.d) |
| 244 | -include $(DEPENDENCIES) |
| 245 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 246 | printall: |
| 247 | @echo objs:=$(objs) |
| 248 | @echo initobjs:=$(initobjs) |
| 249 | @echo drivers:=$(drivers) |
| 250 | @echo smmobjs:=$(smmobjs) |
| 251 | @echo alldirs:=$(alldirs) |
| 252 | @echo allsrc=$(allsrc) |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 253 | @echo DEPENDENCIES=$(DEPENDENCIES) |
Stefan Reinauer | 68a564f | 2010-03-16 01:02:18 +0000 | [diff] [blame] | 254 | @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 255 | |
Patrick Georgi | eb49f9d | 2010-02-25 17:03:17 +0000 | [diff] [blame] | 256 | printcrt0s: |
Stefan Reinauer | acdd52f | 2010-03-30 20:32:01 +0000 | [diff] [blame] | 257 | @echo crt0s=$(crt0s) |
| 258 | @echo ldscripts=$(ldscripts) |
Patrick Georgi | eb49f9d | 2010-02-25 17:03:17 +0000 | [diff] [blame] | 259 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 260 | OBJS := $(patsubst %,$(obj)/%,$(TARGETS-y)) |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 261 | INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include |
| 262 | INCLUDES += -Isrc/devices/oprom/include |
| 263 | # abspath is a workaround for romcc |
Stefan Reinauer | e9f3258 | 2010-03-29 13:04:13 +0000 | [diff] [blame] | 264 | INCLUDES += -include $(abspath $(obj)/config.h) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 265 | |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 266 | CFLAGS = $(INCLUDES) -Os -nostdinc -pipe |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 267 | CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 268 | CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs |
Stefan Reinauer | 68a564f | 2010-03-16 01:02:18 +0000 | [diff] [blame] | 269 | CFLAGS += -Wstrict-aliasing -Wshadow |
Myles Watson | 2e67273 | 2009-11-12 16:38:03 +0000 | [diff] [blame] | 270 | ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y) |
| 271 | CFLAGS += -Werror |
| 272 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 273 | CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer |
| 274 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 275 | CBFS_COMPRESS_FLAG:=l |
Myles Watson | 422d0cb | 2009-09-23 17:48:28 +0000 | [diff] [blame] | 276 | CBFS_PAYLOAD_COMPRESS_FLAG:= |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 277 | CBFS_PAYLOAD_COMPRESS_NAME:=none |
Myles Watson | 422d0cb | 2009-09-23 17:48:28 +0000 | [diff] [blame] | 278 | ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y) |
| 279 | CBFS_PAYLOAD_COMPRESS_FLAG:=l |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 280 | CBFS_PAYLOAD_COMPRESS_NAME:=LZMA |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 281 | endif |
| 282 | |
Stefan Reinauer | c0fbbd0 | 2010-03-15 13:35:19 +0000 | [diff] [blame] | 283 | coreboot: prepare $(obj)/coreboot.rom |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 284 | |
| 285 | endif |
| 286 | |
| 287 | prepare: |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 288 | mkdir -p $(obj) |
Patrick Georgi | 7faf22f | 2010-02-10 18:50:36 +0000 | [diff] [blame] | 289 | mkdir -p $(obj)/util/kconfig/lxdialog $(obj)/util/cbfstool |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 290 | test -n "$(alldirs)" && mkdir -p $(alldirs) || true |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 291 | |
Stefan Reinauer | e9f3258 | 2010-03-29 13:04:13 +0000 | [diff] [blame] | 292 | $(obj)/build.h: .xcompile |
Uwe Hermann | 6c73b441 | 2009-10-28 17:10:51 +0000 | [diff] [blame] | 293 | @printf " GEN build.h\n" |
Patrick Georgi | cccbb89 | 2010-01-29 17:38:57 +0000 | [diff] [blame] | 294 | rm -f $(obj)/build.h |
Stefan Reinauer | b4d3af8 | 2010-02-11 03:21:29 +0000 | [diff] [blame] | 295 | printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht |
| 296 | printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht |
| 297 | printf "#define __BUILD_H\n\n" >> $(obj)/build.ht |
Zheng Bao | b7bc3f3 | 2010-02-23 10:33:25 +0000 | [diff] [blame] | 298 | printf "#define COREBOOT_VERSION \"$(KERNELVERSION)-r$(shell if [ -d $(top)/.svn -a -f `which svnversion` ]; then svnversion $(top); else if [ -d $(top)/.git -a -f `which git` ]; then git --git-dir=/$(top)/.git log|grep git-svn-id|cut -f 2 -d@|cut -f 1 -d' '|sort -g|tail -1; fi; fi)\"\n" >> $(obj)/build.ht |
Patrick Georgi | cccbb89 | 2010-01-29 17:38:57 +0000 | [diff] [blame] | 299 | printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht |
| 300 | printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht |
| 301 | printf "\n" >> $(obj)/build.ht |
| 302 | printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 303 | printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 304 | printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht |
| 305 | printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht |
| 306 | printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 307 | printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null)\"\n" >> $(obj)/build.ht |
| 308 | printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht |
Stefan Reinauer | b4d3af8 | 2010-02-11 03:21:29 +0000 | [diff] [blame] | 309 | printf "#endif\n" >> $(obj)/build.ht |
Patrick Georgi | cccbb89 | 2010-01-29 17:38:57 +0000 | [diff] [blame] | 310 | mv $(obj)/build.ht $(obj)/build.h |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 311 | |
| 312 | doxy: doxygen |
| 313 | doxygen: |
Stefan Reinauer | 1bbad5c | 2010-02-10 15:36:53 +0000 | [diff] [blame] | 314 | $(DOXYGEN) documentation/Doxyfile.coreboot |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 315 | |
| 316 | doxyclean: doxygen-clean |
| 317 | doxygen-clean: |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 318 | rm -rf $(DOXYGEN_OUTPUT_DIR) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 319 | |
Patrick Georgi | 967952a | 2010-02-09 19:41:11 +0000 | [diff] [blame] | 320 | clean-for-update: doxygen-clean |
| 321 | rm -f $(objs) $(initobjs) $(drivers) $(smmobjs) .xcompile |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 322 | rm -f $(DEPENDENCIES) |
Patrick Georgi | 967952a | 2010-02-09 19:41:11 +0000 | [diff] [blame] | 323 | rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a |
Patrick Georgi | 9341acd | 2009-12-23 12:52:56 +0000 | [diff] [blame] | 324 | rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.* |
Patrick Georgi | e64b637 | 2010-04-08 21:04:45 +0000 | [diff] [blame] | 325 | rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 326 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot |
Stefan Reinauer | f9035dd | 2010-03-17 01:18:14 +0000 | [diff] [blame] | 327 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 328 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc |
Stefan Reinauer | 37e7817 | 2010-03-17 01:50:15 +0000 | [diff] [blame] | 329 | rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.* |
| 330 | rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 331 | rmdir -p $(alldirs) 2>/dev/null >/dev/null || true |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 332 | |
Patrick Georgi | 967952a | 2010-02-09 19:41:11 +0000 | [diff] [blame] | 333 | clean: clean-for-update |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 334 | rm -f $(obj)/coreboot* .ccwrap |
Patrick Georgi | 967952a | 2010-02-09 19:41:11 +0000 | [diff] [blame] | 335 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 336 | distclean: clean |
Myles Watson | 1af297c | 2010-01-06 16:59:18 +0000 | [diff] [blame] | 337 | rm -rf $(obj) |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 338 | rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 339 | |
| 340 | update: |
Myles Watson | d4e5c0a | 2009-10-28 15:30:11 +0000 | [diff] [blame] | 341 | dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 342 | |
| 343 | # This include must come _before_ the pattern rules below! |
| 344 | # Order _does_ matter for pattern rules. |
| 345 | include util/kconfig/Makefile |
| 346 | |
| 347 | $(obj)/ldoptions: $(obj)/config.h |
Patrick Georgi | 26774f2 | 2009-11-21 19:54:02 +0000 | [diff] [blame] | 348 | awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@ |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 349 | |
Patrick Georgi | 26774f2 | 2009-11-21 19:54:02 +0000 | [diff] [blame] | 350 | _OS=$(shell uname -s |cut -c-7) |
| 351 | STACK= |
| 352 | ifeq ($(_OS),MINGW32) |
| 353 | STACK=-Wl,--stack,16384000 |
| 354 | endif |
| 355 | ifeq ($(_OS),CYGWIN_) |
| 356 | STACK=-Wl,--stack,16384000 |
| 357 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 358 | $(obj)/romcc: $(top)/util/romcc/romcc.c |
Uwe Hermann | 6c73b441 | 2009-10-28 17:10:51 +0000 | [diff] [blame] | 359 | @printf " HOSTCC $(subst $(obj)/,,$(@)) (this may take a while)\n" |
Uwe Hermann | 0dd63a2 | 2010-02-15 23:24:51 +0000 | [diff] [blame] | 360 | @# Note: Adding -O2 here might cause problems. For details see: |
| 361 | @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html |
Marc Jones | 516255e | 2010-02-13 18:06:29 +0000 | [diff] [blame] | 362 | $(HOSTCC) -g $(STACK) -Wall -o $@ $< |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 363 | |
Stefan Reinauer | c0fbbd0 | 2010-03-15 13:35:19 +0000 | [diff] [blame] | 364 | .PHONY: $(PHONY) prepare clean distclean doxygen doxy coreboot .xcompile |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 365 | |