-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
86 lines (65 loc) · 1.89 KB
/
Makefile
File metadata and controls
86 lines (65 loc) · 1.89 KB
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
# Directories
BUILDDIR = build
SRCDIR = src
OBJDIR = $(BUILDDIR)/obj
ASMDIR = $(BUILDDIR)/asm
MSPGCC_ROOT_DIR = $(HOME)/tools/msp430-gcc
MSPGCC_BIN_DIR = $(MSPGCC_ROOT_DIR)/bin
MSP_GCC_LIB_DIR = $(MSPGCC_ROOT_DIR)/include
CCS_DIR = /opt/ccstudio/ccs
DEBUG_BIN_DIR = $(CCS_DIR)/ccs_base/DebugServer/bin
DEBUG_DRIVERS_DIR = $(CCS_DIR)/ccs_base/DebugServer/drivers
INCLUDE_DIRS = $(MSP_GCC_LIB_DIR)
LIB_DIRS = $(MSP_GCC_LIB_DIR)
# Toolchain
CC = $(MSPGCC_BIN_DIR)/msp430-elf-gcc
GDB = $(MSPGCC_BIN_DIR)/msp430-elf-gdb
DEBUG = LD_LIBRARY_PATH=$(DEBUG_DRIVERS_DIR) $(DEBUG_BIN_DIR)/mspdebug
# Files
SRCS = $(SRCDIR)/main.c \
$(SRCDIR)/utils.c \
$(SRCDIR)/update.c
OBJS = $(SRCS:$(SRCDIR)/%.c=$(OBJDIR)/%.o)
ASMS = $(SRCS:$(SRCDIR)/%.c=$(ASMDIR)/%.s)
TARGET = $(BUILDDIR)/app
# Flags
MMCU = msp430fr5994
CFLAGS = -I$(INCLUDE_DIRS) -Wall -mmcu=$(MMCU) -mlarge -mcode-region=upper -mdata-region=lower -mhwmult=f5series
LDFLAGS = $(CFLAGS) -L$(LIB_DIRS) -mlarge -Xlinker -Map=$(BUILDDIR)/app.map
# Build mode
BUILD_DEBUG = 1
ifeq ($(BUILD_DEBUG), 1)
CFLAGS += -Og -g -gdwarf-3 -gstrict-dwarf
else
CFLAGS += -O2
endif
#### TARGETS ####
$(TARGET): $(OBJS) $(ASMS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
$(ASMDIR)/%.s: $(SRCDIR)/%.c
@mkdir -p $(ASMDIR)
@mv $@ $@.old 2>/dev/null || true
$(CC) $(CFLAGS) -S $< -o $@
$(OBJDIR)/%.o: $(SRCDIR)/%.c
@mkdir -p $(OBJDIR)
$(CC) $(CFLAGS) -c $< -o $@
$(TARGET).diff: $(OBJS)
@mv $(TARGET) $(TARGET).old
@make all
./xdiff.sh $(TARGET).old $(TARGET) $@
#### PHONIES ####
.PHONY: all clean flash diff debug test
test: src/utils.c src/test.c
gcc -g -o test.out src/utils.c src/update.c src/test.c
gdb test.out -ex 'b main' -ex 'r'
all: $(TARGET)
diff: $(TARGET).diff
debug: $(TARGET)
$(GDB) $(TARGET)
flash: $(TARGET)
$(DEBUG) tilib "prog $(TARGET)"
clean:
rm -f $(OBJS) $(TARGET) $(ASMS) $(BUILDDIR)/main.diff
rm -f $(TARGET).*
rm -rf $(OBJDIR)
rm -rf $(ASMDIR)