-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
182 lines (135 loc) · 3.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
# optimization
OPT = -O3
DEBUG = 1
TARGET = IPUSB
# Submodule paths
XPD_DIR = STM32_XPD
USBD_DIR = USBDevice
LWIPDIR = lwIP/src
CONTRIBDIR = lwip-contrib
OS_DIR =
##++---- Included files ----++##
include $(LWIPDIR)/Filelists.mk
##++---- Target configuration ----++##
CORE = m4
SERIES = STM32F4
BSP = BSP_$(SERIES)xx
C_DEFS =
##++---- Build tool binaries ----++##
# BINPATH = /usr/bin
PREFIX = arm-none-eabi-
CC = $(PREFIX)gcc
AS = $(PREFIX)gcc -x assembler-with-cpp
CP = $(PREFIX)objcopy
AR = $(PREFIX)ar
SZ = $(PREFIX)size
HEX = $(CP) -O ihex
BIN = $(CP) -O binary -S
##++---- MCU config ----++##
CPU = -mcpu=cortex-$(CORE)
MCU = $(CPU) -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16
##++---- Assembler ----++##
AS_DEFS =
AS_INCLUDES =
# assembly sources
AS_SOURCES = $(wildcard $(BSP)/*.s)
# assembler flags
ASFLAGS = $(MCU) $(AS_DEFS) $(AS_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
##++---- Compiler ----++##
C_STANDARD = -std=gnu11
# All USBDevice classes are built, but only DFU is used
# C includes
C_INCLUDES = \
-I$(BSP) \
-ICore \
-I$(LWIPDIR)/include \
-I$(USBD_DIR)/Include \
-I$(USBD_DIR)/PDs/STM32_XPD \
-I$(XPD_DIR)/CMSIS/Include \
-I$(XPD_DIR)/CMSIS/Device/ST/$(SERIES)xx/Include \
-I$(XPD_DIR)/$(SERIES)_XPD/inc
# C sources
C_SOURCES = \
$(wildcard $(BSP)/*.c) \
$(wildcard Core/*.c) \
$(wildcard Core/arch/*.c) \
$(LWIPNOAPPSFILES) \
$(DHCPFILES) \
$(HTTPFILES) \
$(wildcard $(USBD_DIR)/Device/*.c) \
$(wildcard $(USBD_DIR)/Class/CDC/*.c) \
$(wildcard $(USBD_DIR)/Class/DFU/*.c) \
$(wildcard $(XPD_DIR)/$(SERIES)_XPD/src/*.c)
##++---- OS selection ----++##
ifeq ($(strip $(OS_DIR)),)
# no OS
C_INCLUDES += -IConfig
# Build path
# BUILD_DIR = build
BUILD_DIR = build/baremetal_$(SERIES)
else ifeq ($(findstring FreeRTOS,$(OS_DIR)),FreeRTOS)
# FreeRTOS
LWIP_OS_PORT = $(CONTRIBDIR)/ports/freertos
ifeq ($(CORE),m0)
PORT_CORE = GCC/ARM_CM0
else ifeq ($(CORE),m3)
PORT_CORE = GCC/ARM_CM3
else ifeq ($(CORE),m4)
PORT_CORE = GCC/ARM_CM4F
else ifeq ($(CORE),m7)
PORT_CORE = GCC/ARM_CM7
endif
C_INCLUDES += \
-IConfig_FreeRTOS \
-I$(LWIP_OS_PORT)/include \
-I$(OS_DIR)/include \
-I$(OS_DIR)/portable/$(PORT_CORE)
C_SOURCES += \
$(OS_DIR)/portable/MemMang/heap_4.c \
$(wildcard $(LWIP_OS_PORT)/*.c) \
$(wildcard $(OS_DIR)/*.c) \
$(wildcard $(OS_DIR)/portable/Common/*.c) \
$(wildcard $(OS_DIR)/portable/$(PORT_CORE)/*.c) \
$(wildcard Core/os/*.c)
BUILD_DIR = build/FreeRTOS_$(SERIES)
endif
# compiler flags
CFLAGS = $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections $(C_STANDARD)
ifeq ($(DEBUG), 1)
CFLAGS += -g -gdwarf-2
endif
# Generate dependency information
CFLAGS += -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)"
##++---- Linker ----++##
# link script
LDSCRIPT = $(wildcard $(BSP)/*.ld)
# libraries
LIBS = -lc -lm -lnosys
LIBDIR =
LDFLAGS = $(MCU) -specs=nano.specs -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref -Wl,--gc-sections
##++---- Build the application ----++##
# default action: build all
all: $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex
# list of objects
OBJECTS = $(addprefix $(BUILD_DIR)/,$(notdir $(C_SOURCES:.c=.o)))
vpath %.c $(sort $(dir $(C_SOURCES)))
# list of ASM program objects
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(AS_SOURCES:.s=.o)))
vpath %.s $(sort $(dir $(AS_SOURCES)))
$(BUILD_DIR)/%.o: %.c Makefile | $(BUILD_DIR)
$(CC) -c $(CFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.c=.lst)) $< -o $@
$(BUILD_DIR)/%.o: %.s Makefile | $(BUILD_DIR)
$(AS) -c $(CFLAGS) $< -o $@
$(BUILD_DIR)/$(TARGET).elf: $(OBJECTS) Makefile
$(CC) $(OBJECTS) $(LDFLAGS) -o $@
$(SZ) $@
$(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
$(HEX) $< $@
$(BUILD_DIR):
mkdir $@
##++---- Clean ----++##
clean:
-rm -fR .dep $(BUILD_DIR)
##++---- Dependencies ----++##
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
# *** EOF ***