blob: 5773c58afd3e6ae6e0e065612bb6ca04c7c08900 [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
Travis Geiselbrechteb946052008-09-07 22:32:49 -070025DEBUG ?= 2
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
40CPPFLAGS := -fno-exceptions -fno-rtti -fno-threadsafe-statics
41#CPPFLAGS += -Weffc++
42ASMFLAGS := -DASSEMBLY
43LDFLAGS :=
44
45CFLAGS += -ffunction-sections -fdata-sections
46LDFLAGS += -gc-sections
47
48# top level rule
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080049all:: $(OUTBIN) $(OUTELF).lst $(OUTELF).debug.lst $(OUTELF).sym $(OUTELF).size APPSBOOTHEADER
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070050
51# the following three object lists are identical except for the ordering
52# which is bootobjs, kobjs, objs
53BOOTOBJS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070054OBJS :=
55
56# a linker script needs to be declared in one of the project/target/platform files
57LINKER_SCRIPT :=
58
59# anything you add here will be deleted in make clean
60GENERATED := $(CONFIGHEADER)
61
62# anything added to DEFINES will be put into $(BUILDDIR)/config.h
63DEFINES := LK=1
64
65# Anything added to SRCDEPS will become a dependency of every source file in the system.
66# Useful for header files that may be included by one or more source files.
67SRCDEPS := $(CONFIGHEADER)
68
69# these need to be filled out by the project/target/platform rules.mk files
70TARGET :=
71PLATFORM :=
72ARCH :=
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070073ALLMODULES :=
74MODULES :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070075
76# any rules you put here will also be built by the system before considered being complete
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070077EXTRA_BUILDDEPS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070078
79# any rules you put here will be depended on in clean builds
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070080EXTRA_CLEANDEPS :=
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070081
Travis Geiselbrecht577036f2009-01-24 21:37:21 -080082include project/$(PROJECT).mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070083include target/$(TARGET)/rules.mk
Chandan Uddarajua9b07bb2009-11-21 12:22:02 -080084include target/$(TARGET)/tools/makefile
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070085include platform/$(PLATFORM)/rules.mk
86include arch/$(ARCH)/rules.mk
87include platform/rules.mk
88include target/rules.mk
89include kernel/rules.mk
90include dev/rules.mk
Travis Geiselbrecht68372232009-01-24 21:21:08 -080091include app/rules.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070092
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -070093# recursively include any modules in the MODULE variable, leaving a trail of included
94# modules in the ALLMODULES list
Travis Geiselbrecht5bcbd9d2009-01-24 20:15:32 -080095include make/module.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070096
97# any extra top level build dependencies that someone declared
98all:: $(EXTRA_BUILDDEPS)
99
100ALLOBJS := \
101 $(BOOTOBJS) \
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700102 $(OBJS)
103
104# add some automatic configuration defines
105DEFINES += \
106 PROJECT_$(PROJECT)=1 \
107 TARGET_$(TARGET)=1 \
108 PLATFORM_$(PLATFORM)=1 \
109 ARCH_$(ARCH)=1 \
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700110 $(addsuffix =1,$(addprefix WITH_,$(ALLMODULES)))
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700111
112# debug build?
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700113ifneq ($(DEBUG),)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700114DEFINES += \
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700115 DEBUG=$(DEBUG)
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700116endif
117
118ALLOBJS := $(addprefix $(BUILDDIR)/,$(ALLOBJS))
119
120DEPS := $(ALLOBJS:%o=%d)
121
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700122# default to no ccache
123CCACHE ?=
124CC := $(CCACHE) $(TOOLCHAIN_PREFIX)gcc
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700125LD := $(TOOLCHAIN_PREFIX)ld
126OBJDUMP := $(TOOLCHAIN_PREFIX)objdump
127OBJCOPY := $(TOOLCHAIN_PREFIX)objcopy
128CPPFILT := $(TOOLCHAIN_PREFIX)c++filt
129SIZE := $(TOOLCHAIN_PREFIX)size
130NM := $(TOOLCHAIN_PREFIX)nm
131
Travis Geiselbrechtf54ab822008-09-05 04:14:40 -0700132# comment out or override if you want to see the full output of each command
133NOECHO ?= @
134
135# the logic to compile and link stuff is in here
Travis Geiselbrecht5bcbd9d2009-01-24 20:15:32 -0800136include make/build.mk
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -0700137
138clean: $(EXTRA_CLEANDEPS)
139 rm -f $(ALLOBJS) $(DEPS) $(GENERATED) $(OUTBIN) $(OUTELF) $(OUTELF).lst
140
141spotless:
142 rm -rf build-*
143
144install: all
145 scp $(OUTBIN) 192.168.0.4:/tftproot
146
147# generate a config.h file with all of the DEFINES laid out in #define format
148configheader:
149
150$(CONFIGHEADER): configheader
151 @$(MKDIR)
152 @echo generating $@
153 @rm -f $(CONFIGHEADER).tmp; \
154 echo \#ifndef __CONFIG_H > $(CONFIGHEADER).tmp; \
155 echo \#define __CONFIG_H >> $(CONFIGHEADER).tmp; \
156 for d in `echo $(DEFINES) | tr [:lower:] [:upper:]`; do \
157 echo "#define $$d" | sed "s/=/\ /g;s/-/_/g;s/\//_/g" >> $(CONFIGHEADER).tmp; \
158 done; \
159 echo \#endif >> $(CONFIGHEADER).tmp; \
160 if [ -f "$(CONFIGHEADER)" ]; then \
161 if cmp "$(CONFIGHEADER).tmp" "$(CONFIGHEADER)"; then \
162 rm -f $(CONFIGHEADER).tmp; \
163 else \
164 mv $(CONFIGHEADER).tmp $(CONFIGHEADER); \
165 fi \
166 else \
167 mv $(CONFIGHEADER).tmp $(CONFIGHEADER); \
168 fi
169
170# Empty rule for the .d files. The above rules will build .d files as a side
171# effect. Only works on gcc 3.x and above, however.
172%.d:
173
174ifeq ($(filter $(MAKECMDGOALS), clean), )
175-include $(DEPS)
176endif
177
178.PHONY: configheader
Brian Swetlandf1e5afd2009-01-24 22:09:30 -0800179endif