blob: d6687dab452be28031757cd595e0d129a32320dd [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001-include local.mk
Travis Geiselbrecht5bcbd9d2009-01-24 20:15:32 -08002include make/macros.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07003
Brian Swetlandf1e5afd2009-01-24 22:09:30 -08004# If one of our goals (from the commandline) happens to have a
5# matching project/goal.mk, then we should re-invoke make with
6# that project name specified...
7
8project-name := $(firstword $(MAKECMDGOALS))
9
10ifneq ($(project-name),)
11ifneq ($(wildcard project/$(project-name).mk),)
12do-nothing := 1
13$(MAKECMDGOALS) _all: make-make
14make-make:
15 @PROJECT=$(project-name) $(MAKE) $(filter-out $(project-name), $(MAKECMDGOALS))
16endif
17endif
18
19ifeq ($(do-nothing),)
20
21ifeq ($(PROJECT),)
22$(error No project specified. Use "make projectname" or put "PROJECT := projectname" in local.mk)
23endif
24
Chandan Uddaraju40b227d2010-08-03 19:25:41 -070025DEBUG ?= 0
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070026
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080027ifndef $(BOOTLOADER_OUT)
28BOOTLOADER_OUT := .
29endif
30
Chandan Uddaraju885e4db2009-12-03 22:45:26 -080031LK_TOP_DIR:= .
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080032BUILDDIR := $(BOOTLOADER_OUT)/build-$(PROJECT)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070033OUTBIN := $(BUILDDIR)/lk.bin
34OUTELF := $(BUILDDIR)/lk
35CONFIGHEADER := $(BUILDDIR)/config.h
36
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070037INCLUDES := -I$(BUILDDIR) -Iinclude
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070038CFLAGS := -O2 -g -fno-builtin -finline -W -Wall -Wno-multichar -Wno-unused-parameter -Wno-unused-function -include $(CONFIGHEADER)
39#CFLAGS += -Werror
David Ng025c1d92009-12-09 23:46:00 -080040ifeq ($(EMMC_BOOT),1)
41 CFLAGS += -D_EMMC_BOOT=1
42endif
Christopher Johnson36cd7032010-11-09 14:46:30 -070043# When the host arch is ARM, ensure stack protection code is not emitted since
44# it's not supported by the bootloader's libc
45ifneq ($(shell uname -m | grep "arm.*"),)
46 CFLAGS += -fno-stack-protector
47endif
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070048CPPFLAGS := -fno-exceptions -fno-rtti -fno-threadsafe-statics
49#CPPFLAGS += -Weffc++
50ASMFLAGS := -DASSEMBLY
51LDFLAGS :=
52
53CFLAGS += -ffunction-sections -fdata-sections
54LDFLAGS += -gc-sections
55
56# top level rule
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080057all:: $(OUTBIN) $(OUTELF).lst $(OUTELF).debug.lst $(OUTELF).sym $(OUTELF).size APPSBOOTHEADER
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070058
59# the following three object lists are identical except for the ordering
60# which is bootobjs, kobjs, objs
61BOOTOBJS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070062OBJS :=
63
64# a linker script needs to be declared in one of the project/target/platform files
65LINKER_SCRIPT :=
66
67# anything you add here will be deleted in make clean
68GENERATED := $(CONFIGHEADER)
69
70# anything added to DEFINES will be put into $(BUILDDIR)/config.h
71DEFINES := LK=1
72
73# Anything added to SRCDEPS will become a dependency of every source file in the system.
74# Useful for header files that may be included by one or more source files.
75SRCDEPS := $(CONFIGHEADER)
76
77# these need to be filled out by the project/target/platform rules.mk files
78TARGET :=
79PLATFORM :=
80ARCH :=
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070081ALLMODULES :=
82MODULES :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070083
84# any rules you put here will also be built by the system before considered being complete
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070085EXTRA_BUILDDEPS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070086
87# any rules you put here will be depended on in clean builds
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070088EXTRA_CLEANDEPS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070089
Travis Geiselbrecht577036f2009-01-24 21:37:21 -080090include project/$(PROJECT).mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070091include target/$(TARGET)/rules.mk
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080092include target/$(TARGET)/tools/makefile
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070093include platform/$(PLATFORM)/rules.mk
94include arch/$(ARCH)/rules.mk
95include platform/rules.mk
96include target/rules.mk
97include kernel/rules.mk
98include dev/rules.mk
Travis Geiselbrecht68372232009-01-24 21:21:08 -080099include app/rules.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700100
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700101# recursively include any modules in the MODULE variable, leaving a trail of included
102# modules in the ALLMODULES list
Travis Geiselbrecht5bcbd9d2009-01-24 20:15:32 -0800103include make/module.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700104
105# any extra top level build dependencies that someone declared
106all:: $(EXTRA_BUILDDEPS)
107
108ALLOBJS := \
109 $(BOOTOBJS) \
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700110 $(OBJS)
111
112# add some automatic configuration defines
113DEFINES += \
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -0700114 BOARD=$(PROJECT) \
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700115 PROJECT_$(PROJECT)=1 \
116 TARGET_$(TARGET)=1 \
117 PLATFORM_$(PLATFORM)=1 \
118 ARCH_$(ARCH)=1 \
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700119 $(addsuffix =1,$(addprefix WITH_,$(ALLMODULES)))
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700120
121# debug build?
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700122ifneq ($(DEBUG),)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700123DEFINES += \
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700124 DEBUG=$(DEBUG)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700125endif
126
127ALLOBJS := $(addprefix $(BUILDDIR)/,$(ALLOBJS))
128
129DEPS := $(ALLOBJS:%o=%d)
130
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700131# default to no ccache
132CCACHE ?=
133CC := $(CCACHE) $(TOOLCHAIN_PREFIX)gcc
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700134LD := $(TOOLCHAIN_PREFIX)ld
135OBJDUMP := $(TOOLCHAIN_PREFIX)objdump
136OBJCOPY := $(TOOLCHAIN_PREFIX)objcopy
137CPPFILT := $(TOOLCHAIN_PREFIX)c++filt
138SIZE := $(TOOLCHAIN_PREFIX)size
139NM := $(TOOLCHAIN_PREFIX)nm
140
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700141# comment out or override if you want to see the full output of each command
142NOECHO ?= @
143
144# the logic to compile and link stuff is in here
Travis Geiselbrecht5bcbd9d2009-01-24 20:15:32 -0800145include make/build.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700146
147clean: $(EXTRA_CLEANDEPS)
148 rm -f $(ALLOBJS) $(DEPS) $(GENERATED) $(OUTBIN) $(OUTELF) $(OUTELF).lst
149
150spotless:
151 rm -rf build-*
152
153install: all
154 scp $(OUTBIN) 192.168.0.4:/tftproot
155
156# generate a config.h file with all of the DEFINES laid out in #define format
157configheader:
158
159$(CONFIGHEADER): configheader
160 @$(MKDIR)
161 @echo generating $@
162 @rm -f $(CONFIGHEADER).tmp; \
163 echo \#ifndef __CONFIG_H > $(CONFIGHEADER).tmp; \
164 echo \#define __CONFIG_H >> $(CONFIGHEADER).tmp; \
165 for d in `echo $(DEFINES) | tr [:lower:] [:upper:]`; do \
166 echo "#define $$d" | sed "s/=/\ /g;s/-/_/g;s/\//_/g" >> $(CONFIGHEADER).tmp; \
167 done; \
168 echo \#endif >> $(CONFIGHEADER).tmp; \
169 if [ -f "$(CONFIGHEADER)" ]; then \
170 if cmp "$(CONFIGHEADER).tmp" "$(CONFIGHEADER)"; then \
171 rm -f $(CONFIGHEADER).tmp; \
172 else \
173 mv $(CONFIGHEADER).tmp $(CONFIGHEADER); \
174 fi \
175 else \
176 mv $(CONFIGHEADER).tmp $(CONFIGHEADER); \
177 fi
178
179# Empty rule for the .d files. The above rules will build .d files as a side
180# effect. Only works on gcc 3.x and above, however.
181%.d:
182
183ifeq ($(filter $(MAKECMDGOALS), clean), )
184-include $(DEPS)
185endif
186
187.PHONY: configheader
Brian Swetlandf1e5afd2009-01-24 22:09:30 -0800188endif