blob: 37f617adb4e6da435c52d9c8dc6982a0aa747076 (
plain)
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
|
.DEFAULT_GOAL := sketch
BOARD ?= maple
MAPLE_TARGET ?= flash
# Useful paths
SRCROOT := $(dir)
BUILD_PATH = build
LIBMAPLE_PATH := libmaple
# Useful variables
GLOBAL_CFLAGS = -Os -g -mcpu=cortex-m3 -mthumb -march=armv7-m -nostdlib \
-ffunction-sections -fdata-sections -Wl,--gc-sections
GLOBAL_CXXFLAGS := -fno-rtti -fno-exceptions -Wall
LDDIR := support/ld
LDFLAGS = -T$(LDDIR)/$(LDSCRIPT) -L$(LDDIR) \
-mcpu=cortex-m3 -mthumb -Xlinker \
--gc-sections --print-gc-sections --march=armv7-m -Wall
# Set up build rules and some useful templates
include support/make/build-rules.mk
include support/make/build-templates.mk
VENDOR_ID = 1EAF
PRODUCT_ID = 0003
# Force a rebuild if the maple target changed
PREV_BUILD_TYPE := $(shell cat $(BUILD_PATH)/build-type 2>/dev/null)
ifneq ($(PREV_BUILD_TYPE), $(MAPLE_TARGET))
$(shell rm -rf $(BUILD_PATH))
endif
# Some target specific things
ifeq ($(MAPLE_TARGET), ram)
VECT_BASE_ADDR := VECT_TAB_RAM
LDSCRIPT := ram.ld
UPLOAD := support/scripts/reset.py && \
sleep 1 && \
$(DFU) -a0 -d $(VENDOR_ID):$(PRODUCT_ID) -D $(BUILD_PATH)/$(BOARD).bin -R
endif
ifeq ($(MAPLE_TARGET), flash)
LDSCRIPT := flash.ld
VECT_BASE_ADDR := VECT_TAB_FLASH
UPLOAD := support/scripts/reset.py && \
sleep 1 && \
$(DFU) -a1 -d $(VENDOR_ID):$(PRODUCT_ID) -D $(BUILD_PATH)/$(BOARD).bin -R
endif
ifeq ($(MAPLE_TARGET), jtag)
LDSCRIPT := jtag.ld
VECT_BASE_ADDR := VECT_TAB_BASE
UPLOAD := \
openocd -f support/openocd/flash.cfg
endif
# Set all submodules here
LIBMAPLE_MODULES := libmaple
LIBMAPLE_MODULES += wirish
# call each module rules.mk
$(foreach m,$(LIBMAPLE_MODULES),$(eval $(call LIBMAPLE_MODULE_template,$(m))))
# Main target
include support/make/build-targets.mk
# Fake targets
POSSIBLE_TARGETS := install sketch clean help debug cscope tags ctags
.PHONY: $(POSSIBLE_TARGETS)
install: sketch
$(UPLOAD)
sketch: MSG_INFO $(BUILD_PATH)/$(BOARD).bin
clean:
rm -rf build
help:
@echo ""
@echo " libmaple Makefile help"
@echo " ----------------------"
@echo " Compile targets:"
@echo " sketch: Compile sketch code"
@echo " "
@echo " Programming targets:"
@echo " install: Upload code to target"
@echo " "
@echo " Other targets:"
@echo " debug: Start an openocd gdb server, port 3333"
@echo " clean: Remove all build and object files"
@echo " help: Show this message"
@echo " "
debug:
$(OPENOCD) -f support/openocd/run.cfg
cscope:
rm -rf *.cscope
find . -name '*.[hcs]' -o -name '*.cpp' | xargs cscope -b
tags:
etags `find . -name "*.c" -o -name "*.cpp" -o -name "*.h"`
@echo "Made TAGS file for EMACS code browsing"
ctags:
ctags-exuberant -R .
@echo "Made tags file for VIM code browsing"
|