-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
67 lines (58 loc) · 2.01 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
################################################################################
# define the name of the generated output file
#
TARGET = main
################################################################################
# TOOLS & ARGS
#
SRC = $(wildcard *.cpp)
TERMINAL = gnome-terminal
TOOLCHAIN = GCC_ARM
BOARD = BLUEPILL_F103C8
BUILDDIR = BUILD
MBED = mbed
# DETERMINE OS
ifdef SystemRoot
RM = del /Q
RM_DIR = rmdir /Q /S
FixPath = $(subst /,\,$1)
else
RM = rm -rf
RM_DIR = $(RM)
FixPath = $1
endif
################################################################################
# BUILD RULES
all: $(SRC) build
################################################################################
# CREATE A DEBUG VESRION
build: $(SRC)
@echo "----------------------------------------------------------------------"
@echo "Building with DEBUG Symbols"
@echo ""
$(MBED) compile -m $(BOARD) -t $(TOOLCHAIN) -N main --profile mbed-os/tools/profiles/debug.json
@echo ""
################################################################################
# CREATE A RELEASE VESRION
release: $(SRC)
@echo "----------------------------------------------------------------------"
@echo "Build a RELEASE version"
@echo ""
$(MBED) compile -m $(BOARD) -t $(TOOLCHAIN) -N main
@echo ""
################################################################################
# RUN RULES
run: build $(BUILDDIR)/$(BOARD)/$(TOOLCHAIN)/$(TARGET).bin
ST-LINK_CLI -c SWD -P "$(BUILDDIR)/$(BOARD)/$(TOOLCHAIN)/$(TARGET).bin" 0x08000000 -V -Rst
################################################################################
# ERASE DEVICE
erase:
ST-LINK_CLI -c SWD -ME
################################################################################
# CLEAN RULES
clean:
$(RM) $(call FixPath, *.pyc)
$(RM_DIR) $(call FixPath, ${BUILDDIR})
################################################################################
# EOF
################################################################################