Add convenience rules for cscope to Makefile.
[coreboot.git] / Makefile
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>
6 ## Copyright (C) 2009-2010 coresystems GmbH
7 ##
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.
11 ##
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
20 ##
21
22 ifeq ($(INNER_SCANBUILD),y)
23 CC_real:=$(CC)
24 endif
25
26 $(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile)))
27 include .xcompile
28
29 ifeq ($(INNER_SCANBUILD),y)
30 CC:=$(CC_real)
31 HOSTCC:=$(CC_real) --hostcc
32 HOSTCXX:=$(CC_real) --hostcxx
33 endif
34
35 export top := $(PWD)
36 export src := src
37 export srck := $(top)/util/kconfig
38 export obj ?= build
39 export objutil ?= $(obj)/util
40 export objk := $(objutil)/kconfig
41
42
43 export KERNELVERSION      := 4.0
44 export KCONFIG_AUTOHEADER := $(obj)/config.h
45 export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
46
47 CONFIG_SHELL := sh
48 KBUILD_DEFCONFIG := configs/defconfig
49 UNAME_RELEASE := $(shell uname -r)
50 HAVE_DOTCONFIG := $(wildcard .config)
51 MAKEFLAGS += -rR --no-print-directory
52
53 # Make is silent per default, but 'make V=1' will show all compiler calls.
54 Q:=@
55 ifneq ($(V),1)
56 ifneq ($(Q),)
57 .SILENT:
58 endif
59 endif
60
61 CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E
62 ROMCC:= $(objutil)/romcc/romcc
63 HOSTCC = gcc
64 HOSTCXX = g++
65 HOSTCFLAGS := -I$(srck) -I$(objk) -g
66 HOSTCXXFLAGS := -I$(srck) -I$(objk)
67 LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && $(CC) -print-libgcc-file-name)
68
69 DOXYGEN := doxygen
70 DOXYGEN_OUTPUT_DIR := doxygen
71
72 # Three cases where we don't need fully populated $(obj) lists:
73 # 1. when no .config exists
74 # 2. when make config (in any flavour) is run
75 # 3. when make distclean is run
76 # Don't waste time on reading all Makefile.incs in these cases
77 ifeq ($(strip $(HAVE_DOTCONFIG)),)
78 NOCOMPILE:=1
79 endif
80 ifneq ($(MAKECMDGOALS),)
81 ifneq ($(filter %config distclean,$(MAKECMDGOALS)),)
82 NOCOMPILE:=1
83 endif
84 endif
85
86 ifeq ($(NOCOMPILE),1)
87 all: config
88
89 else
90
91 include $(top)/.config
92
93 ifneq ($(INNER_SCANBUILD),y)
94 ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y)
95 CC:=clang -m32
96 HOSTCC:=clang
97 endif
98 endif
99
100 ifeq ($(CONFIG_CCACHE),y)
101 CCACHE:=CCACHE_COMPILERCHECK=content $(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH))))
102 ifeq ($(CCACHE),)
103 $(error ccache selected, but not found in PATH)
104 endif
105 CC := $(CCACHE) $(CC)
106 HOSTCC := $(CCACHE) $(HOSTCC)
107 HOSTCXX := $(CCACHE) $(HOSTCXX)
108 ROMCC := $(CCACHE) $(ROMCC)
109 endif
110
111 strip_quotes = $(subst ",,$(subst \",,$(1)))
112
113 ARCHDIR-$(CONFIG_ARCH_X86)    := i386
114 ARCHDIR-$(CONFIG_ARCH_POWERPC) := ppc
115
116 MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
117 export MAINBOARDDIR
118
119 PLATFORM-y += src/arch/$(ARCHDIR-y) src/cpu src/mainboard/$(MAINBOARDDIR)
120 TARGETS-y :=
121
122 BUILD-y := src/lib src/boot src/console src/devices src/southbridge src/northbridge src/superio src/drivers
123 BUILD-y += util/cbfstool util/sconfig
124 BUILD-$(CONFIG_ARCH_X86) += src/pc80
125
126 ifneq ($(CONFIG_LOCALVERSION),"")
127 COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
128 endif
129
130 # The primary target needs to be here before we include the
131 # other files
132
133 ifeq ($(INNER_SCANBUILD),y)
134 CONFIG_SCANBUILD_ENABLE:=
135 endif
136
137 ifeq ($(CONFIG_SCANBUILD_ENABLE),y)
138 ifneq ($(CONFIG_SCANBUILD_REPORT_LOCATION),)
139 CONFIG_SCANBUILD_REPORT_LOCATION:=-o $(CONFIG_SCANBUILD_REPORT_LOCATION)
140 endif
141 all:
142         echo '#!/bin/sh' > .ccwrap
143         echo 'CC="$(CC)"' >> .ccwrap
144         echo 'if [ "$$1" = "--hostcc" ]; then shift; CC="$(HOSTCC)"; fi' >> .ccwrap
145         echo 'if [ "$$1" = "--hostcxx" ]; then shift; CC="$(HOSTCXX)"; fi' >> .ccwrap
146         echo 'eval $$CC $$*' >> .ccwrap
147         chmod +x .ccwrap
148         scan-build $(CONFIG_SCANBUILD_REPORT_LOCATION) -analyze-headers --use-cc=$(top)/.ccwrap --use-c++=$(top)/.ccwrap $(MAKE) INNER_SCANBUILD=y
149 else
150 all: $(obj)/config.h coreboot
151 endif
152
153 # must come rather early
154 .SECONDEXPANSION:
155
156 $(obj)/config.h:
157         $(MAKE) oldconfig
158
159 #######################################################################
160 # Build the tools
161
162 CBFSTOOL:=$(objutil)/cbfstool/cbfstool
163
164 # needed objects that every mainboard uses
165 # Creation of these is architecture and mainboard independent
166 $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb  $(objutil)/sconfig/sconfig
167         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
168         mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
169         $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
170
171 $(objutil)/%.o: $(objutil)/%.c
172         @printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
173         $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
174
175 $(obj)/%.o: $(obj)/%.c $(obj)/config.h
176         @printf "    CC         $(subst $(obj)/,,$(@))\n"
177         $(CC) -MMD $(CFLAGS) -c -o $@ $<
178
179 objs:=$(obj)/mainboard/$(MAINBOARDDIR)/static.o
180 initobjs:=
181 drivers:=
182 smmobjs:=
183 types:=obj initobj driver smmobj
184
185 # Clean -y variables, include Makefile.inc
186 # If $(3) is non-empty, add paths to files in X-y, and add them to Xs
187 # Add subdirs-y to subdirs
188 includemakefiles= \
189         $(foreach type,$(2), $(eval $(type)-y:=)) \
190         $(eval subdirs-y:=) \
191         $(eval -include $(1)) \
192         $(foreach type,$(2), \
193                 $(eval $(type)s+= \
194                         $$(subst $(top)/,, \
195                         $$(abspath $$(patsubst src/%, \
196                                         $(obj)/%, \
197                                         $$(addprefix $(dir $(1)),$$($(type)-y))))))) \
198         $(eval subdirs+=$$(subst $(PWD)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
199
200 # For each path in $(subdirs) call includemakefiles, passing $(1) as $(3)
201 # Repeat until subdirs is empty
202 evaluate_subdirs= \
203         $(eval cursubdirs:=$(subdirs)) \
204         $(eval subdirs:=) \
205         $(foreach dir,$(cursubdirs), \
206                 $(eval $(call includemakefiles,$(dir)/Makefile.inc,$(types)))) \
207         $(if $(subdirs),$(eval $(call evaluate_subdirs)))
208
209 # collect all object files eligible for building
210 subdirs:=$(PLATFORM-y) $(BUILD-y)
211 $(eval $(call evaluate_subdirs))
212
213 initobjs:=$(addsuffix .initobj.o, $(basename $(initobjs)))
214 drivers:=$(addsuffix .driver.o, $(basename $(drivers)))
215 smmobjs:=$(addsuffix .smmobj.o, $(basename $(smmobjs)))
216
217 allobjs:=$(foreach var, $(addsuffix s,$(types)), $($(var)))
218 alldirs:=$(sort $(abspath $(dir $(allobjs))))
219 source_with_ext=$(patsubst $(obj)/%.o,src/%.$(1),$(allobjs))
220 allsrc=$(wildcard $(call source_with_ext,c) $(call source_with_ext,S))
221
222 define objs_asl_template
223 $(obj)/$(1)%.o: src/$(1)%.asl
224         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
225         $(CPP) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
226         iasl -p $$(basename $$@) -tc $$(basename $$@).asl
227         mv $$(basename $$@).hex $$(basename $$@).c
228         $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $$@))), -DAmlCode=AmlCode_$$(basename $$(notdir $$@))) -c -o $$@ $$(basename $$@).c
229         # keep %.o: %.c rule from catching the temporary .c file after a make clean
230         mv $$(basename $$@).c $$(basename $$@).hex
231 endef
232
233 # macro to define template macros that are used by use_template macro
234 define create_cc_template
235 # $1 obj class (objs, initobjs, ...)
236 # $2 source suffix (c, S)
237 # $3 .o infix ("" ".initobj", ...)
238 # $4 additional compiler flags
239 de$(EMPTY)fine $(1)_$(2)_template
240 $(obj)/$$(1)%$(3).o: src/$$(1)%.$(2) $(obj)/config.h
241         @printf "    CC         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
242         $(CC) $(4) -MMD $$$$(CFLAGS) -c -o $$$$@ $$$$<
243 en$(EMPTY)def
244 endef
245
246 $(eval $(call create_cc_template,objs,c))
247 $(eval $(call create_cc_template,objs,S,,-DASSEMBLY))
248 $(eval $(call create_cc_template,initobjs,c,.initobj,-D__PRE_RAM__))
249 $(eval $(call create_cc_template,initobjs,S,.initobj,-DASSEMBLY -D__PRE_RAM__))
250 $(eval $(call create_cc_template,drivers,c,.driver))
251 $(eval $(call create_cc_template,drivers,S,.driver,-DASSEMBLY))
252 $(eval $(call create_cc_template,smmobjs,c,.smmobj))
253 $(eval $(call create_cc_template,smmobjs,S,.smmobj))
254
255 usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d)))))
256 usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d)))))
257 $(eval $(call usetemplate,objs,asl))
258 $(eval $(call usetemplate,objs,c))
259 $(eval $(call usetemplate,objs,S))
260 $(eval $(call usetemplate,initobjs,c))
261 $(eval $(call usetemplate,initobjs,S))
262 $(eval $(call usetemplate,drivers,c))
263 $(eval $(call usetemplate,drivers,S))
264 $(eval $(call usetemplate,smmobjs,c))
265 $(eval $(call usetemplate,smmobjs,S))
266
267 DEPENDENCIES = $(objs:.o=.d) $(initobjs:.o=.d) $(drivers:.o=.d) $(smmobjs:.o=.d)
268 -include $(DEPENDENCIES)
269
270 printall:
271         @echo objs:=$(objs)
272         @echo initobjs:=$(initobjs)
273         @echo drivers:=$(drivers)
274         @echo smmobjs:=$(smmobjs)
275         @echo alldirs:=$(alldirs)
276         @echo allsrc=$(allsrc)
277         @echo DEPENDENCIES=$(DEPENDENCIES)
278         @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME)
279
280 printcrt0s:
281         @echo crt0s=$(crt0s)
282         @echo ldscripts=$(ldscripts)
283
284 OBJS     := $(patsubst %,$(obj)/%,$(TARGETS-y))
285 INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include
286 INCLUDES += -Isrc/devices/oprom/include
287 # abspath is a workaround for romcc
288 INCLUDES += -include $(abspath $(obj)/config.h)
289
290 CFLAGS = $(INCLUDES) -Os -nostdinc -pipe
291 CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
292 CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
293 CFLAGS += -Wstrict-aliasing -Wshadow
294 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
295 CFLAGS += -Werror
296 endif
297 CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
298
299 CBFS_COMPRESS_FLAG:=l
300 CBFS_PAYLOAD_COMPRESS_FLAG:=
301 CBFS_PAYLOAD_COMPRESS_NAME:=none
302 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
303 CBFS_PAYLOAD_COMPRESS_FLAG:=l
304 CBFS_PAYLOAD_COMPRESS_NAME:=LZMA
305 endif
306
307 coreboot: $(obj)/coreboot.rom
308
309 endif
310
311 $(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(objutil)/cbfstool $(objutil)/romcc $(objutil)/options $(alldirs))
312
313 $(obj)/build.h: .xcompile
314         @printf "    GEN        build.h\n"
315         rm -f $(obj)/build.h
316         printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht
317         printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht
318         printf "#define __BUILD_H\n\n" >> $(obj)/build.ht
319         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
320         printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht
321         printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht
322         printf "\n" >> $(obj)/build.ht
323         printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht
324         printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht
325         printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht
326         printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht
327         printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht
328         printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null)\"\n" >> $(obj)/build.ht
329         printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht
330         printf "#endif\n" >> $(obj)/build.ht
331         mv $(obj)/build.ht $(obj)/build.h
332
333 cscope:
334         cscope -bR
335
336 doxy: doxygen
337 doxygen:
338         $(DOXYGEN) documentation/Doxyfile.coreboot
339
340 doxyclean: doxygen-clean
341 doxygen-clean:
342         rm -rf $(DOXYGEN_OUTPUT_DIR)
343
344 clean-for-update: doxygen-clean
345         rm -f $(objs) $(initobjs) $(drivers) $(smmobjs) .xcompile
346         rm -f $(DEPENDENCIES)
347         rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
348         rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
349         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
350         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
351         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
352         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
353         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
354         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
355         rmdir -p $(alldirs) 2>/dev/null >/dev/null || true
356
357 clean: clean-for-update
358         rm -f $(obj)/coreboot* .ccwrap
359
360 clean-cscope:
361         rm -f cscope.out
362
363 distclean: clean-cscope
364         rm -rf $(obj)
365         rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
366
367 update:
368         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
369
370 # This include must come _before_ the pattern rules below!
371 # Order _does_ matter for pattern rules.
372 include util/kconfig/Makefile
373
374 $(obj)/ldoptions: $(obj)/config.h
375         awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
376
377 _WINCHECK=$(shell uname -o 2> /dev/null)
378 STACK=
379 ifeq ($(_WINCHECK),Msys)
380         STACK=-Wl,--stack,16384000
381 endif
382 ifeq ($(_WINCHECK),Cygwin)
383         STACK=-Wl,--stack,16384000
384 endif
385
386 $(objutil)/romcc/romcc: $(top)/util/romcc/romcc.c
387         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
388         @# Note: Adding -O2 here might cause problems. For details see:
389         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
390         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
391
392 .PHONY: $(PHONY) clean clean-cscope cscope distclean doxygen doxy coreboot .xcompile
393