BUILD: add missing config.h dependency
[coreboot.git] / Makefile.inc
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
22 REV=-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)
23 export KERNELVERSION      := 4.0$(REV)
24
25 #######################################################################
26 # Basic component discovery
27 ARCHDIR-$(CONFIG_ARCH_X86) := x86
28 MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
29 export MAINBOARDDIR
30
31 #######################################################################
32 # root rule to resolve if in build mode (ie. configuration exists)
33 real-target: $(obj)/config.h coreboot
34 coreboot: $(obj)/coreboot.rom
35
36 #######################################################################
37 # our phony targets
38 PHONY+= clean-abuild coreboot
39
40 #######################################################################
41 # root source directories of coreboot
42 subdirs-y := src/lib src/boot src/console src/devices src/ec src/southbridge src/northbridge src/superio src/drivers src/cpu
43 subdirs-y += util/cbfstool util/sconfig
44 subdirs-y += src/arch/$(ARCHDIR-y)
45 subdirs-y += src/mainboard/$(MAINBOARDDIR)
46
47 subdirs-$(CONFIG_ARCH_X86) += src/pc80
48
49 #######################################################################
50 # Add source classes and their build options
51 classes-y := ramstage romstage driver smm
52
53 ramstage-S-ccopts:=-DASSEMBLY
54 romstage-c-ccopts:=-D__PRE_RAM__
55 romstage-S-ccopts:=-DASSEMBLY -D__PRE_RAM__
56 driver-S-ccopts:=-DASSEMBLY
57
58 ramstage-c-deps:=$$(OPTION_TABLE_H)
59 romstage-c-deps:=$$(OPTION_TABLE_H)
60
61 #######################################################################
62 # Add handler to compile ACPI's ASL
63 define ramstage-objs_asl_template
64 $(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
65         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
66         $(CPP) -MMD -MT $$(@) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
67         iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl
68         mv $$(obj)/$(1).hex $$(basename $$@).c
69         $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
70         # keep %.o: %.c rule from catching the temporary .c file after a make clean
71         mv $$(basename $$@).c $$(basename $$@).hex
72 endef
73
74 #######################################################################
75 # Add handler for arbitrary files in CBFS
76 $(call add-special-class,cbfs-files)
77 cbfs-files-handler= \
78                 $(if $(wildcard $(1)$($(2)-file)), \
79                         $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
80                         $(eval tmp-cbfs-file:= $($(2)-file))) \
81                 $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-position)) \
82                 $(eval $(2)-name:=) \
83                 $(eval $(2)-type:=) \
84                 $(eval $(2)-position:=)
85
86 #######################################################################
87 # a variety of flags for our build
88 CBFS_COMPRESS_FLAG:=l
89 CBFS_PAYLOAD_COMPRESS_FLAG:=
90 CBFS_PAYLOAD_COMPRESS_NAME:=none
91 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
92 CBFS_PAYLOAD_COMPRESS_FLAG:=l
93 CBFS_PAYLOAD_COMPRESS_NAME:=LZMA
94 endif
95
96 ifneq ($(CONFIG_LOCALVERSION),"")
97 COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
98 endif
99
100 INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include
101 INCLUDES += -Isrc/devices/oprom/include
102 # abspath is a workaround for romcc
103 INCLUDES += -include $(abspath $(obj)/config.h)
104
105 CFLAGS = $(INCLUDES) -Os -pipe -g
106 CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
107 CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
108 CFLAGS += -Wstrict-aliasing -Wshadow
109 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
110 CFLAGS += -Werror
111 endif
112 ifneq ($(CONFIG_AMD_AGESA),y)
113 CFLAGS += -nostdinc 
114 endif
115 CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
116
117 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/options
118
119 #######################################################################
120 # generate build support files
121 $(obj)/build.h: .xcompile
122         @printf "    GEN        build.h\n"
123         rm -f $(obj)/build.h
124         printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht
125         printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht
126         printf "#define __BUILD_H\n\n" >> $(obj)/build.ht
127         printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >> $(obj)/build.ht
128         printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht
129         printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht
130         printf "\n" >> $(obj)/build.ht
131         printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht
132         printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht
133         printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht
134         printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht
135         printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht
136         printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null)\"\n" >> $(obj)/build.ht
137         printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht
138         printf "#endif\n" >> $(obj)/build.ht
139         mv $(obj)/build.ht $(obj)/build.h
140
141 $(obj)/ldoptions: $(obj)/config.h
142         awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
143
144 #######################################################################
145 # Build the tools
146 CBFSTOOL:=$(obj)/cbfstool
147
148 $(CBFSTOOL): $(objutil)/cbfstool/cbfstool
149         cp $< $@
150
151 _WINCHECK=$(shell uname -o 2> /dev/null)
152 STACK=
153 ifeq ($(_WINCHECK),Msys)
154         STACK=-Wl,--stack,16384000
155 endif
156 ifeq ($(_WINCHECK),Cygwin)
157         STACK=-Wl,--stack,16384000
158 endif
159
160 ROMCC:= $(objutil)/romcc/romcc
161 $(ROMCC): $(top)/util/romcc/romcc.c
162         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
163         @# Note: Adding -O2 here might cause problems. For details see:
164         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
165         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
166
167 #######################################################################
168 # needed objects that every mainboard uses
169 # Creation of these is architecture and mainboard independent
170 $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb  $(objutil)/sconfig/sconfig
171         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
172         mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
173         $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
174
175 ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
176
177 $(objutil)/%.o: $(objutil)/%.c
178         @printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
179         $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
180
181 $(obj)/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
182         @printf "    CC         $(subst $(obj)/,,$(@))\n"
183         $(CC) -MMD $(CFLAGS) -c -o $@ $<
184
185 #######################################################################
186 # Clean up rules
187 clean-abuild:
188         rm -rf coreboot-builds
189
190 clean-for-update-target:
191         rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
192         rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
193         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
194         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
195         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
196         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
197         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
198         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
199         $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
200
201 clean-target:
202         rm -f $(obj)/coreboot*
203
204 #######################################################################
205 # Development utilities
206 printcrt0s:
207         @echo crt0s=$(crt0s)
208         @echo ldscripts=$(ldscripts)
209
210 update:
211         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
212
213 lint:
214         FAILED=0; LINTLOG=`mktemp`; \
215         for script in util/lint/lint-*; do \
216                 echo; echo `basename $$script`; \
217                 grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
218                 echo ========; \
219                 $$script > $$LINTLOG; \
220                 if [ `wc -l $$LINTLOG | cut -d' ' -f1` -eq 0 ]; then \
221                         printf "success\n\n"; \
222                 else \
223                         echo test failed: ; \
224                         cat $$LINTLOG; \
225                         rm -f $$LINTLOG; \
226                         FAILED=$$(( $$FAILED + 1 )); \
227                 fi; \
228                 echo ========; \
229         done; \
230         test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." &&  exit 1; }; \
231         rm -f $$LINTLOG