blob: 158ac44a8a4e866d5f950e9ede4ffe3f39482918 [file] [log] [blame]
Patrick Georgi71b84802011-02-22 14:35:05 +00001##
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
Vadim Bendebury6e7abcd2012-12-10 15:47:23 -080022export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; \
23 then git describe --dirty --always || git describe; \
24 else echo 4.0$(KERNELREVISION); fi)
Patrick Georgi71b84802011-02-22 14:35:05 +000025
26#######################################################################
27# Basic component discovery
Patrick Georgi71b84802011-02-22 14:35:05 +000028MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
29export MAINBOARDDIR
30
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030031## Final build results, which CBFSTOOL uses to create the final
32## rom image file, are placed under $(objcbfs).
33## These typically have suffixes .debug .elf .bin and .map
Stefan Reinauera60ca362012-08-09 11:09:44 -070034export objcbfs := $(obj)/cbfs/$(call strip_quotes,$(CONFIG_CBFS_PREFIX))
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030035
36## Based on the active configuration, Makefile conditionally collects
37## the required assembly includes and saves them in a file.
38## Such files that do not have a clear one-to-one relation to a source
39## file under src/ are placed and built under $(objgenerated)
40export objgenerated := $(obj)/generated
41
Patrick Georgi71b84802011-02-22 14:35:05 +000042#######################################################################
43# root rule to resolve if in build mode (ie. configuration exists)
44real-target: $(obj)/config.h coreboot
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030045coreboot: build-dirs $(obj)/coreboot.rom
Patrick Georgi71b84802011-02-22 14:35:05 +000046
47#######################################################################
48# our phony targets
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030049PHONY+= clean-abuild coreboot lint lint-stable build-dirs
Patrick Georgi71b84802011-02-22 14:35:05 +000050
51#######################################################################
52# root source directories of coreboot
Stefan Reinauer8d711552012-11-30 12:34:04 -080053subdirs-y := src/lib src/console src/device src/ec src/southbridge
Kyösti Mälkki2a830d02011-12-01 17:49:43 +020054subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
Patrick Georgi499fc922012-03-09 10:53:52 +010055subdirs-y += util/cbfstool util/sconfig util/nvramtool
Patrick Georgi71b84802011-02-22 14:35:05 +000056subdirs-y += src/arch/$(ARCHDIR-y)
57subdirs-y += src/mainboard/$(MAINBOARDDIR)
58
Patrick Georgia25828d2011-09-02 09:57:01 +020059subdirs-y += site-local
60
Patrick Georgi71b84802011-02-22 14:35:05 +000061#######################################################################
62# Add source classes and their build options
Hung-Te Linfe187922013-02-01 01:09:24 +080063classes-y := ramstage romstage bootblock smm cpu_microcode
Patrick Georgi71b84802011-02-22 14:35:05 +000064
Patrick Georgif33e3952012-11-25 17:10:47 +010065#######################################################################
66# Helper functions for ramstage postprocess
67spc :=
68spc +=
69$(spc) :=
70$(spc) +=
71
72# files-in-dir-recursive,dir,files
73files-in-dir-recursive=$(filter $(1)%,$(2))
74
75# parent-dir,dir/
76parent-dir=$(dir $(subst $( ),/,$(strip $(subst /, ,$(1)))))
77
78# filters out exactly the directory specified
79# filter-out-dir,dir_to_keep,dirs
80filter-out-dir=$(filter-out $(1),$(2))
81
82# filters out dir_to_keep and all its parents
83# filter-out-dirs,dir_to_keep,dirs
84filter-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)))
85
86# dir-wildcards,dirs
87dir-wildcards=$(addsuffix %,$(1))
88
89# files-in-dir,dir,files
90files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(dir $(2)))),$(call files-in-dir-recursive,$(1),$(2)))
91
92#######################################################################
93# reduce command line length by linking the objects of each
94# directory into an intermediate file
95ramstage-postprocess=$(foreach d,$(sort $(dir $(1))), \
96 $(eval $(d)ramstage.o: $(call files-in-dir,$(d),$(1)); $$(LD) -o $$@ -r $$^ ) \
97 $(eval ramstage-objs:=$(d)ramstage.o $(filter-out $(call files-in-dir,$(d),$(1)),$(ramstage-objs))))
98
Patrick Georgi71b84802011-02-22 14:35:05 +000099romstage-c-ccopts:=-D__PRE_RAM__
Stefan Reinauer61aee5f2011-04-10 04:15:23 +0000100romstage-S-ccopts:=-D__PRE_RAM__
Rudolf Marek7f0e9302011-09-02 23:23:41 +0200101ifeq ($(CONFIG_TRACE),y)
102ramstage-c-ccopts:= -finstrument-functions
103endif
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800104ifeq ($(CONFIG_COVERAGE),y)
105ramstage-c-ccopts+=-fprofile-arcs -ftest-coverage
106endif
Rudolf Marek7f0e9302011-09-02 23:23:41 +0200107
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200108ifeq ($(CONFIG_USE_BLOBS),y)
109forgetthis:=$(shell git submodule update --init --checkout 3rdparty)
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200110endif
111
Hung-Te Lin5f83f6c2013-02-04 14:38:03 +0800112bootblock-c-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
113bootblock-S-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
Hung-Te Linfe187922013-02-01 01:09:24 +0800114
Stefan Reinauer24ef1342011-04-14 22:28:00 +0000115smm-c-ccopts:=-D__SMM__
116smm-S-ccopts:=-D__SMM__
Patrick Georgi71b84802011-02-22 14:35:05 +0000117
Stefan Reinauer3aa067f2012-04-02 13:24:04 -0700118# SMM TSEG base is dynamic
119ifeq ($(CONFIG_SMM_TSEG),y)
120smm-c-ccopts += -fpic
121endif
122
Patrick Georgi57205c72011-03-08 20:49:18 +0000123ramstage-c-deps:=$$(OPTION_TABLE_H)
124romstage-c-deps:=$$(OPTION_TABLE_H)
Hung-Te Linfe187922013-02-01 01:09:24 +0800125bootblock-c-deps:=$$(OPTION_TABLE_H)
Patrick Georgi57205c72011-03-08 20:49:18 +0000126
Patrick Georgi71b84802011-02-22 14:35:05 +0000127#######################################################################
128# Add handler to compile ACPI's ASL
129define ramstage-objs_asl_template
Sven Schnelled69438e2011-03-29 09:01:10 +0000130$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
Patrick Georgi71b84802011-02-22 14:35:05 +0000131 @printf " IASL $$(subst $(top)/,,$$(@))\n"
Patrick Georgic0e16e72012-05-05 15:11:22 +0200132 $(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 Jones2aac3f62011-08-08 16:07:50 -0600133 cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
Patrick Georgib2a42642011-06-01 19:54:16 +0000134 mv $$(basename $$@).hex $$(basename $$@).c
Patrick Georgi71b84802011-02-22 14:35:05 +0000135 $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
136 # keep %.o: %.c rule from catching the temporary .c file after a make clean
137 mv $$(basename $$@).c $$(basename $$@).hex
138endef
139
140#######################################################################
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100141# Parse plaintext cmos defaults into binary format
142# arg1: source file
143# arg2: binary file name
144cbfs-files-processor-nvramtool= \
145 $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
146 printf " CREATE $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2))
147
148#######################################################################
Patrick Georgi843005c2012-04-30 23:15:17 +0200149# Link VSA binary to ELF-ish stage
150# arg1: source file
151# arg2: binary file name
152cbfs-files-processor-vsa= \
153 $(eval $(2): $(1) ; \
154 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))
155
156#######################################################################
Patrick Georgi71b84802011-02-22 14:35:05 +0000157# Add handler for arbitrary files in CBFS
158$(call add-special-class,cbfs-files)
159cbfs-files-handler= \
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100160 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
Patrick Georgi1fc2bda2012-11-15 14:51:54 +0100161 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
Patrick Georgi71b84802011-02-22 14:35:05 +0000162 $(if $(wildcard $(1)$($(2)-file)), \
163 $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
164 $(eval tmp-cbfs-file:= $($(2)-file))) \
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100165 $(if $(strip $($(2)-required)), \
166 $(if $(wildcard $(tmp-cbfs-file)),, \
167 $(info This build configuration requires $($(2)-required)) \
168 $(eval FAILBUILD:=1) \
169 )) \
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100170 $(if $(tmp-cbfs-method), \
171 $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
Patrick Georgi16c7ad72012-09-21 18:11:59 +0200172 $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100173 $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
Dave Frodin0013bbf2012-08-14 11:01:53 -0600174 $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$($(2)-position)) \
Patrick Georgi71b84802011-02-22 14:35:05 +0000175 $(eval $(2)-name:=) \
176 $(eval $(2)-type:=) \
Dave Frodin0013bbf2012-08-14 11:01:53 -0600177 $(eval $(2)-compression:=) \
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100178 $(eval $(2)-position:=) \
179 $(eval $(2)-required:=)
Patrick Georgi71b84802011-02-22 14:35:05 +0000180
181#######################################################################
182# a variety of flags for our build
Stefan Reinauer63217582012-10-29 16:52:36 -0700183CBFS_COMPRESS_FLAG:=none
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000184ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
Stefan Reinauer63217582012-10-29 16:52:36 -0700185CBFS_COMPRESS_FLAG:=LZMA
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000186endif
187
Stefan Reinauer63217582012-10-29 16:52:36 -0700188CBFS_PAYLOAD_COMPRESS_FLAG:=none
Patrick Georgi71b84802011-02-22 14:35:05 +0000189ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
Stefan Reinauer63217582012-10-29 16:52:36 -0700190CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
Patrick Georgi71b84802011-02-22 14:35:05 +0000191endif
192
193ifneq ($(CONFIG_LOCALVERSION),"")
194COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
195endif
196
197INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include
Stefan Reinauer8d711552012-11-30 12:34:04 -0800198INCLUDES += -Isrc/device/oprom/include
Patrick Georgi71b84802011-02-22 14:35:05 +0000199# abspath is a workaround for romcc
Patrick Georgic0e16e72012-05-05 15:11:22 +0200200INCLUDES += -include $(src)/include/kconfig.h
Patrick Georgi71b84802011-02-22 14:35:05 +0000201
Frank Vibransec402602011-05-05 16:45:36 +0000202CFLAGS = $(INCLUDES) -Os -pipe -g -nostdinc
Patrick Georgi71b84802011-02-22 14:35:05 +0000203CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
204CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
205CFLAGS += -Wstrict-aliasing -Wshadow
206ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
207CFLAGS += -Werror
208endif
Patrick Georgi71b84802011-02-22 14:35:05 +0000209CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
210
Stefan Reinauer5b635792012-08-16 14:05:42 -0700211additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool $(objutil)/options
Patrick Georgi71b84802011-02-22 14:35:05 +0000212
213#######################################################################
214# generate build support files
215$(obj)/build.h: .xcompile
216 @printf " GEN build.h\n"
217 rm -f $(obj)/build.h
218 printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht
219 printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht
220 printf "#define __BUILD_H\n\n" >> $(obj)/build.ht
Patrick Georgib8e9ba92011-03-17 07:47:49 +0000221 printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >> $(obj)/build.ht
Patrick Georgi71b84802011-02-22 14:35:05 +0000222 printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht
223 printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht
Zheng Bao0e6d0ed2012-11-09 19:55:04 +0800224 printf "#define COREBOOT_BUILD_YEAR_BCD 0x`LANG= date +"%y"`\n" >> $(obj)/build.ht
225 printf "#define COREBOOT_BUILD_MONTH_BCD 0x`LANG= date +"%m"`\n" >> $(obj)/build.ht
226 printf "#define COREBOOT_BUILD_DAY_BCD 0x`LANG= date +"%d"`\n" >> $(obj)/build.ht
227 printf "#define COREBOOT_BUILD_WEEKDAY_BCD 0x`LANG= date +"%w"`\n" >> $(obj)/build.ht
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200228 printf "#define COREBOOT_DMI_DATE \"`LANG= date +"%m/%d/%Y"`\"\n" >> $(obj)/build.ht
Patrick Georgi71b84802011-02-22 14:35:05 +0000229 printf "\n" >> $(obj)/build.ht
230 printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht
231 printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht
232 printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht
233 printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht
234 printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht
Zheng Bao86aa7c42012-09-28 16:06:44 +0800235 printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null || hostname 2>/dev/null)\"\n" >> $(obj)/build.ht
Patrick Georgi71b84802011-02-22 14:35:05 +0000236 printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht
237 printf "#endif\n" >> $(obj)/build.ht
238 mv $(obj)/build.ht $(obj)/build.h
239
240$(obj)/ldoptions: $(obj)/config.h
241 awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
242
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +0300243build-dirs:
244 mkdir -p $(objcbfs) $(objgenerated)
245
Patrick Georgi71b84802011-02-22 14:35:05 +0000246#######################################################################
247# Build the tools
248CBFSTOOL:=$(obj)/cbfstool
249
250$(CBFSTOOL): $(objutil)/cbfstool/cbfstool
251 cp $< $@
252
253_WINCHECK=$(shell uname -o 2> /dev/null)
254STACK=
255ifeq ($(_WINCHECK),Msys)
256 STACK=-Wl,--stack,16384000
257endif
258ifeq ($(_WINCHECK),Cygwin)
259 STACK=-Wl,--stack,16384000
260endif
261
262ROMCC:= $(objutil)/romcc/romcc
263$(ROMCC): $(top)/util/romcc/romcc.c
264 @printf " HOSTCC $(subst $(obj)/,,$(@)) (this may take a while)\n"
265 @# Note: Adding -O2 here might cause problems. For details see:
266 @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
267 $(HOSTCC) -g $(STACK) -Wall -o $@ $<
268
Stefan Reinauer5b635792012-08-16 14:05:42 -0700269IFDTOOL:=$(objutil)/ifdtool/ifdtool
270$(IFDTOOL): $(top)/util/ifdtool/ifdtool.c
271 @printf " HOSTCC $(subst $(obj)/,,$(@))\n"
272 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
273
Patrick Georgi71b84802011-02-22 14:35:05 +0000274#######################################################################
275# needed objects that every mainboard uses
276# Creation of these is architecture and mainboard independent
277$(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb $(objutil)/sconfig/sconfig
278 @printf " SCONFIG $(subst $(src)/,,$(<))\n"
279 mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
280 $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
281
282ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
Stefan Reinauer57879c92012-07-31 16:47:25 -0700283romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
Patrick Georgi71b84802011-02-22 14:35:05 +0000284
285$(objutil)/%.o: $(objutil)/%.c
286 @printf " HOSTCC $(subst $(objutil)/,,$(@))\n"
287 $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
288
Patrick Georgi64ccc3b82011-05-20 23:08:12 +0000289$(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
Patrick Georgi71b84802011-02-22 14:35:05 +0000290 @printf " CC $(subst $(obj)/,,$(@))\n"
291 $(CC) -MMD $(CFLAGS) -c -o $@ $<
292
Stefan Reinauer57879c92012-07-31 16:47:25 -0700293$(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
294 @printf " CC $(subst $(obj)/,,$(@))\n"
295 $(CC) -MMD -D__PRE_RAM__ $(CFLAGS) -c -o $@ $<
296
Hung-Te Linfe187922013-02-01 01:09:24 +0800297$(obj)/%.bootblock.o $(abspath $(obj))/%.bootblock.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
298 @printf " CC $(subst $(obj)/,,$(@))\n"
Hung-Te Lin5f83f6c2013-02-04 14:38:03 +0800299 $(CC) -MMD $(bootblock-c-ccopts) $(CFLAGS) -c -o $@ $<
Hung-Te Linfe187922013-02-01 01:09:24 +0800300
Patrick Georgi71b84802011-02-22 14:35:05 +0000301#######################################################################
302# Clean up rules
303clean-abuild:
304 rm -rf coreboot-builds
305
306clean-for-update-target:
307 rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
308 rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
309 rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
310 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
311 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
312 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
313 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
314 rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
Marc Jones1dd0dda2012-03-19 17:32:33 -0600315 $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC)" LD="$(LD)"
Patrick Georgi71b84802011-02-22 14:35:05 +0000316
317clean-target:
318 rm -f $(obj)/coreboot*
319
320#######################################################################
321# Development utilities
322printcrt0s:
323 @echo crt0s=$(crt0s)
324 @echo ldscripts=$(ldscripts)
325
326update:
327 dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
328
Patrick Georgicb02cb72012-02-25 19:42:59 +0100329lint lint-stable:
Zheng Bao533bca82012-09-28 19:38:37 +0800330 FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \
Patrick Georgicb02cb72012-02-25 19:42:59 +0100331 for script in util/lint/$@-*; do \
Patrick Georgi71b84802011-02-22 14:35:05 +0000332 echo; echo `basename $$script`; \
333 grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
334 echo ========; \
335 $$script > $$LINTLOG; \
Patrick Georgic040e4762012-03-09 23:02:09 +0100336 if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \
Patrick Georgi71b84802011-02-22 14:35:05 +0000337 printf "success\n\n"; \
338 else \
339 echo test failed: ; \
340 cat $$LINTLOG; \
341 rm -f $$LINTLOG; \
342 FAILED=$$(( $$FAILED + 1 )); \
343 fi; \
344 echo ========; \
345 done; \
346 test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \
347 rm -f $$LINTLOG
Patrick Georgi6c445502011-05-16 15:32:28 +0000348
Patrick Georgibb605282011-06-05 15:15:49 +0200349gitconfig:
Zheng Bao50ad0952012-10-22 16:29:37 +0800350 mkdir -p .git/hooks
zbaof2c32542012-08-10 15:44:02 +0800351 for hook in commit-msg pre-commit ; do \
352 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \
353 ! -x .git/hooks/$$hook ]; then \
354 cp util/gitconfig/$$hook .git/hooks/$$hook; \
355 chmod +x .git/hooks/$$hook; \
356 fi; \
357 done
Ronald G. Minnich64b364d2013-01-03 08:26:09 -0800358 git config remote.origin.push HEAD:refs/for/master
Patrick Georgibb605282011-06-05 15:15:49 +0200359 (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)
360
Patrick Georgi6c445502011-05-16 15:32:28 +0000361crossgcc: clean-for-update
Peter Stuge0b6b4d62011-06-09 05:06:25 +0200362 $(MAKE) -C util/crossgcc build-without-gdb
363
364crosstools: clean-for-update
Patrick Georgi6c445502011-05-16 15:32:28 +0000365 $(MAKE) -C util/crossgcc build
366
367crossgcc-clean: clean-for-update
368 $(MAKE) -C util/crossgcc clean
369
Patrick Georgi43105d62011-11-05 14:44:41 +0100370tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/nvramtool/nvramtool $(objutil)/romcc/romcc $(objutil)/sconfig/sconfig
371