forked from Depthkernelcore/Arccore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
203 lines (163 loc) · 4.83 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# build with:
# $ make BOARDDIR=<board> BDIR=<dir>[,<dir>] CROSS_COMPILE=<gcc> all|clean|clean_all
#
# TARGETS
# all: Target when building
# clean: Remove generatated files for a board
# clean_all: Remove all generated files
# help: Print some help
#
# VARIABLES:
# BOARDDIR=<board dir>
# Select what board to build for
# BDIR=<dir>[,<dir>]
# Select what directories to build. The kernel is always built.
# CROSS_COMPILE
# Specify the compiler to use.
# Q=[(@)/empty]
# If Q=@ cmd's will not be echoed.
#
# EXAMPLES
# Clean all
# $ make clean_all
#
# Clean for a specific board
# $ make BDIR=mpc551xsim clean
#
# Build the simple example (assuming CROSS_COMPILE set)
# $ make BOARDDIR= mpc551xsim BDIR=examples/simple all
#
export UNAME:=$(shell uname)
ifneq ($(findstring Darwin,$(UNAME)),)
SHELL:=/bin/bash
export SED=/opt/local/bin/gsed
else
export SED=sed
endif
ifeq ($(VERBOSE),y)
export Q?=
else
export Q?=@
endif
export TOPDIR = $(CURDIR)
export PATH
# Select default console
# RAMLOG | TTY_T32 | TTY_WINIDEA
export SELECT_OS_CONSOLE
export SELECT_CONSOLE
export USE_DEBUG_PRINTF
export SELECT_OPT
ifneq ($(filter clean_all,$(MAKECMDGOALS)),clean_all)
ifeq ($(BOARDDIR),)
$(error BOARDDIR is empty)
endif
ifeq ($(BDIR),)
$(error BDIR is empty)
endif
endif
# C:/apa -> /c/apa
# ../tjo -> ../tjo
to_msyspath = $(shell echo "$(1)" | sed -e 's,\\,\/,g;s,\([a-zA-Z]\):,/\1,')
# Convert Path if on windows.
ifeq ($(OS),Windows_NT)
BDIR:=$(call to_msyspath,$(BDIR))
endif
USE_T32_SIM?=n
export USE_T32_SIM
# Tools
# Ugly thing to make things work under cmd.exe
PATH := /usr/bin/:$(PATH)
FIND := $(shell which find)
export objdir = obj_$(BOARDDIR)
export CFG_MCU
export CFG_CPU
export MCU
export def-y+=$(CFG_ARCH_$(ARCH)) $(CFG_MCU) $(CFG_CPU)
# We descend into the object directories and build the. That way it's easier to build
# multi-arch support and we don't have to use objdir everywhere.
# ROOTDIR - The top-most directory
# SUBDIR - The current subdirectory it's building.
comma:= ,
empty:=
space:= $(empty) $(empty)
split = $(subst $(comma), ,$(1))
dir_cmd_goals := $(call split,$(BDIR))
cmd_cmd_goals := $(filter all clean config,$(MAKECMDGOALS))
# Check for CROSS_COMPILE
ifneq ($(cmd_cmd_goals),)
# Check that the board actually exist
ifdef BOARDDIR
all_boards := $(subst /,,$(subst boards/,,$(shell $(FIND) boards/ -maxdepth 1 -type d)))
all_boards_print := $(subst $(space),$(comma)$(space),$(strip $(all_boards)))
ifeq ($(filter $(BOARDDIR),$(all_boards)),)
$(error no such board: $(BOARDDIR), valid boards are: $(all_boards_print))
endif
endif
# Check BDIR
endif
libs:
mkdir -p $@
.PHONY all:
all: libs $(dir_cmd_goals)
.PHONY: clean
.PHONY: release
.PHONY: help
help:
@echo "Build a simple example"
@echo " > make BOARDDIR=mpc551xsim CROSS_COMPILE=/opt/powerpc-eabi/bin/powerpc-eabi- BDIR=examples/simple all"
@echo ""
@echo "Clean"
@echo " > make clean"
@echo ""
@echo "Present config:"
@echo " BDIR = ${BDIR}"
@echo " BOARDDIR = $(BOARDDIR)"
@echo " CROSS_COMPILE = $(CROSS_COMPILE)"
@echo " CURDIR = $(CURDIR)"
@echo ""
test:
@echo $(all_boards)
show_build:
@echo ""
@echo "==========[ BUILD INFO ]==========="
@echo " BDIR: $(BDIR) [$(origin BDIR)]"
@echo " BOARDDIR: $(BOARDDIR) [$(origin BOARDDIR)]"
@echo " COMPILER: $(COMPILER) [$(origin COMPILER)]"
ifeq ($(COMPILER),cw)
@echo " CW_COMPILE: $(CW_COMPILE) [$(origin CW_COMPILE)]"
else ifeq ($(COMPILER),iar)
@echo " IAR_COMPILE: $(IAR_COMPILE) [$(origin IAR_COMPILE)]"
else
@echo " CROSS_COMPILE: $(CROSS_COMPILE) [$(origin CROSS_COMPILE)]"
endif
@echo " CURDIR: $(CURDIR)"
@echo " SELECT_CONSOLE: $(SELECT_CONSOLE) [$(origin SELECT_CONSOLE)]"
$(dir_cmd_goals) :: show_build FORCE
@echo ""
@echo ==========[ ${abspath $@} ]===========
@if [ ! -d $@ ]; then echo "No such directory: \"$@\" quitting"; exit 1; fi
+@[ -d $@/$(objdir) ] || mkdir -p $@/$(objdir)
@chmod 777 $@/$(objdir)
$(Q)$(MAKE) -r -C $@/$(objdir) -f $(CURDIR)/scripts/rules.mk ROOTDIR=$(CURDIR) SUBDIR=$@ $(cmd_cmd_goals)
.PHONY: test
FORCE:
.PHONY: boards
boards:
@find . -type d -name *
clean_all:
$(Q)find . -type d -name obj_* | xargs rm -rf
$(Q)find . -type f -name *.a | xargs rm -rf
@echo
@echo " >>>>>>>>> DONE <<<<<<<<<"
@echo
config: $(dir_cmd_goals)
.PHONY clean:
clean: $(dir_cmd_goals)
@echo
@echo " >> Cleaning MAIN $(CURDIR)"
# $(Q)find . -type d -name $(objdir) | xargs rm -rf
# $(Q)find . -type f -name *.a | xargs rm -rf
# $(Q)rm -rf libs/*
@echo
@echo " >>>>>>>>> DONE <<<<<<<<<"
@echo