-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
309 lines (264 loc) · 8.38 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#
# !!!! Do NOT edit this makefile with an editor which replace tabs by spaces !!!!
#
##############################################################################################
#
# On command line:
#
# make -f makefile CFG=Debug all = Create Debug project
#
# make -f makefile CFG=Release all = Create Release project
#
# make clean = Clean project files.
#
# To rebuild project do "make clean" and "make all".
#
# If no configuration is specified, "Debug" will be used
ifndef "CFG"
CFG=Debug
endif
CHIP = sam3x8
BOARD = sam3x_ek
# Trace level used for compilation
# (can be overriden by adding TRACE_LEVEL=#number to the command-line)
# TRACE_LEVEL_DEBUG 5
# TRACE_LEVEL_INFO 4
# TRACE_LEVEL_WARNING 3
# TRACE_LEVEL_ERROR 2
# TRACE_LEVEL_FATAL 1
# TRACE_LEVEL_NO_TRACE 0
TRACE_LEVEL = 4
##############################################################################################
# Start of default section
#
TRGT = arm-none-eabi-
CC = $(TRGT)gcc
CP = $(TRGT)objcopy
LD = $(TRGT)ld
AS = $(TRGT)gcc -x assembler-with-cpp
BIN = $(CP) -O binary
MCU = cortex-m3
# List all default C defines here, like -D_DEBUG=1
ifeq "$(CFG)" "Debug"
DDEFS = -DDebug
endif
ifeq "$(CFG)" "Release"
DDEFS = -DRelease
endif
#-Dpsram
#-DKernelApp
#-DMainApp
#-Dpsram
# List all default ASM defines here, like -D_DEBUG=1
DADEFS =
# List all default directories to look for include files here
DINCDIR = ./inc ./inc/chip ./inc/board ./external_libs ./src/memories/include ./src/memories ./src/fs
# List the default directory to look for the libraries here
DLIBDIR =
# List all default libraries here
DLIBS =
#
# End of default section
##############################################################################################
##############################################################################################
# Start of user section
#
# Define project name here
ifeq "$(CFG)" "Debug"
PROJECT = bootloader_Debug
endif
ifeq "$(CFG)" "Release"
PROJECT = bootloader_Release
endif
# Define linker script file here
LDSCRIPT_RAM = ./prj/bootloader.ld
# List all user C define here, like -D_DEBUG=1
UDEFS =
# Define ASM defines here
UADEFS =
# List C source files here
SRC = ./external_libs/cmsis/core_cm3.c \
./src/main.c \
./src/exceptions.c \
./src/linuxboot.c \
./src/peripherals/chipid/chipid.c \
./src/peripherals/dma/dmac.c \
./src/peripherals/eefc/eefc.c \
./src/peripherals/hsmc/hsmci.c \
./src/peripherals/matrix/matrix.c \
./src/peripherals/pio/pio_it.c \
./src/peripherals/pio/pio.c \
./src/peripherals/pmc/pmc.c \
./src/peripherals/rstc/rstc.c \
./src/peripherals/rtc/rtc.c \
./src/peripherals/rtt/rtt.c \
./src/peripherals/sdram/sdramc.c \
./src/peripherals/smc/smc.c \
./src/peripherals/spi/spi.c \
./src/peripherals/supc/supc.c \
./src/peripherals/twi/twi.c \
./src/peripherals/usart/usart.c \
./src/peripherals/wdt/wdt.c \
./src/startup/board_cstartup_gnu.c \
./src/startup/board_lowlevel.c \
./src/startup/board_memories.c \
./src/drivers/led/led.c \
./src/drivers/syscalls.c \
./src/drivers/trace.c \
./src/drivers/uart_console.c \
./src/drivers/lcd_draw.c \
./src/drivers/lcd_font.c \
./src/drivers/lcd_font10x14.c \
./src/drivers/lcdd.c \
./src/drivers/hx8347.c \
./src/drivers/frame_buffer.c \
./src/drivers/dmacd.c \
./src/memories/nandflash/EccNandFlash.c \
./src/memories/nandflash/ManagedNandFlash.c \
./src/memories/nandflash/MappedNandFlash.c \
./src/memories/nandflash/NandFlashModel.c \
./src/memories/nandflash/NandFlashModelList.c \
./src/memories/nandflash/NandSpareScheme.c \
./src/memories/nandflash/TranslatedNandFlash.c \
./src/memories/nandflash/NfcRawNandFlash.c \
./src/memories/Media_Init.c \
./src/memories/Media.c \
./src/memories/MEDNandFlash.c \
./src/fs/ff.c \
./src/fs/diskio.c \
./src/memories/sdmmc/mci_cmd.c \
./src/memories/sdmmc/sdmmc.c \
./src/memories/MEDSdcard.c
# List ASM source files here
ASRC =
# List all user directories here
UINCDIR = ./inc
# List the user directory to look for the libraries here
ULIBDIR =
# List all user libraries here
ULIBS =
# Define optimisation level here
OPT = -O0
#
# End of user defines
##############################################################################################
INCDIR = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR))
LIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))
DEFS = $(DDEFS) $(UDEFS)
ADEFS = $(DADEFS) $(UADEFS)
OBJS = $(ASRC:.s=.o) $(SRC:.c=.o)
ifeq "$(CFG)" "Debug"
OUTDIR = objects
OBJOUT = ./$(OUTDIR)
LISTDIR = lst
LISTOUT = ./$(LISTDIR)
endif
ifeq "$(CFG)" "Release"
OUTDIR = objects
OBJOUT = ./$(OUTDIR)
LISTDIR = lst
LISTOUT = ./$(LISTDIR)
RELEASE = release
endif
LIBS = $(DLIBS) $(ULIBS)
MCFLAGS = -mcpu=$(MCU)
ifeq "$(CFG)" "Debug"
ASFLAGS = $(MCFLAGS) -g -gdwarf-2 -Wa,-amhls=$(LISTOUT)/$(*F).lst $(ADEFS)
endif
ifeq "$(CFG)" "Release"
ASFLAGS = $(MCFLAGS) -Wa,-amhls=$(LISTOUT)/$(*F).lst $(ADEFS)
endif
#CPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -mthumb -fomit-frame-pointer -Wall -Wstrict-prototypes -mfix-cortex-m3-ldrd -fverbose-asm -Wa,-ahlms=$(LISTOUT)/$(*F)lst $(DEFS)
CPFLAGS += -Wall -Wchar-subscripts -Wcomment -Wformat=2 -Wimplicit-int
CPFLAGS += -Werror-implicit-function-declaration -Wmain -Wparentheses
CPFLAGS += -Wsequence-point -Wreturn-type -Wswitch -Wtrigraphs -Wunused
CPFLAGS += -Wuninitialized -Wunknown-pragmas -Wfloat-equal -Wundef
CPFLAGS += -Wshadow -Wpointer-arith -Wbad-function-cast -Wwrite-strings
CPFLAGS += -Wsign-compare -Waggregate-return -Wstrict-prototypes
CPFLAGS += -Wmissing-prototypes -Wmissing-declarations
CPFLAGS += -Wformat -Wmissing-format-attribute -Wno-deprecated-declarations
CPFLAGS += -Wpacked -Wredundant-decls -Wnested-externs -Winline -Wlong-long
CPFLAGS += -Wunreachable-code
CPFLAGS += -Wcast-align
#CPFLAGS += -Wmissing-noreturn
#CPFLAGS += -Wconversion
# To reduce application size use only integer printf function.
#CPFLAGS += -Dprintf=iprintf
# -mlong-calls -Wall
CPFLAGS += --param max-inline-insns-single=500 -Wa,-amhls=$(LISTOUT)/$(*F).lst $(ADEFS) -fomit-frame-pointer -mthumb -ffunction-sections -mfix-cortex-m3-ldrd
CPFLAGS += -g $(MCFLAGS) $(OPT) -D$(CHIP) -DTRACE_LEVEL=$(TRACE_LEVEL)
ifeq "$(CFG)" "Debug"
CPFLAGS += -gdwarf-2
endif
ifeq "$(CFG)" "Debug"
LDFLAGS_RAM = $(MCFLAGS) -mthumb -nostartfiles -T$(LDSCRIPT_RAM) -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
endif
ifeq "$(CFG)" "Release"
LDFLAGS_RAM = $(MCFLAGS) -mthumb -nostartfiles -T$(LDSCRIPT_RAM) -Wl,-Map=$(PROJECT).map,--cref,--strip-debug,--no-warn-mismatch $(LIBDIR)
endif
# Generate dependency information
CPFLAGS += -MD -MP -MF .dep/$(@F).d
#
# makefile rules
#
all: RAM
ifeq "$(CFG)" "Debug"
makdir:
mkdir $(LISTDIR)
mkdir .dep
mkdir $(OUTDIR)
endif
ifeq "$(CFG)" "Release"
makdir:
mkdir $(LISTDIR)
mkdir .dep
mkdir $(OUTDIR)
mkdir $(RELEASE)
endif
ifeq "$(CFG)" "Debug"
RAM: makdir $(OBJS) $(PROJECT).elf
endif
ifeq "$(CFG)" "Release"
RAM: makdir $(OBJS) $(PROJECT).elf $(PROJECT).bin
endif
%o : %c
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o "$(OBJOUT)/$(@F)"
%o : %s
$(AS) -c $(ASFLAGS) $< -o "$(OBJOUT)/$(@F)"
%.elf: $(OBJOUT)/*
$(CC) $(OBJOUT)/* $(LDFLAGS_RAM) $(LIBS) -o $(@F)
%bin: %elf
$(BIN) $< "$(RELEASE)/$(@F)"
ifeq "$(CFG)" "Release"
clean:
-rm -rf $(OBJS)
-rm -f $(PROJECT).elf
-rm -f $(PROJECT).map
-rm -f $(RELEASE)/$(PROJECT).bin
-rm -f $(SRC:.c=.c.bak)
-rm -f $(SRC:.c=.lst)
-rm -f $(ASRC:.s=.s.bak)
-rm -f $(ASRC:.s=.lst)
-rm -rf .dep
-rm -rf $(OUTDIR)
-rm -rf $(LISTDIR)
-rm -rf $(RELEASE)
endif
ifeq "$(CFG)" "Debug"
clean:
-rm -rf $(OBJS)
-rm -f $(PROJECT).elf
-rm -f $(PROJECT).map
-rm -f $(SRC:.c=.c.bak)
-rm -f $(SRC:.c=.lst)
-rm -f $(ASRC:.s=.s.bak)
-rm -f $(ASRC:.s=.lst)
-rm -rf .dep
-rm -rf $(OUTDIR)
-rm -rf $(LISTDIR)
endif
#
# Include the dependency files, should be the last of the makefile
#
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
# *** EOF ***