-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
185 lines (143 loc) · 5.92 KB
/
makefile
File metadata and controls
185 lines (143 loc) · 5.92 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
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
############################################################################
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA #
# #
############################################################################
# #
# (c) Copyright, 2011, Elijah Brown #
# #
############################################################################
# #
# Filename: makefile #
# #
############################################################################
##########################################################################
# Start of default section
#
TRGT = arm-none-eabi-
CC = $(TRGT)gcc
CPP = $(TRGT)g++
CP = $(TRGT)objcopy
AS = $(TRGT)gcc -x assembler-with-cpp
SIZE = $(TRGT)size -B -x
HEX = $(CP) -O ihex
BIN = $(CP) -O binary
MCU = arm7tdmi
# List all default C defines here, like -D_DEBUG=1
DDEFS =
# List all default ASM defines here, like -D_DEBUG=1
DADEFS =
# List all default directories to look for include files here
DINCDIR =
# List the default directory to look for the libraries here
DLIBDIR =
# List all default libraries here
DLIBS = -lm
#
# End of default section
##########################################################################
##########################################################################
# Start of user section
#
# Define project name here
PROJECT = FlightComputer
# Define command used to fetch git version info
GIT_VERSION = $(shell sh -c 'git describe --abbrev=8 --dirty --always')
# Define linker script file here
LDSCRIPT = lpc2148-flash.ld
# List all user C define here, like -D_DEBUG=1
UDEFS =
# Define ASM defines here
UADEFS =
# List C source files here
CSRC = CRunTime.c
CSRC += fatfs/ff.c fatfs/mmc.c
# List CPP source files here
CPPSRC = AFSK.cpp main.cpp Engineering.cpp FlightComputer.cpp IOPorts.cpp Log.cpp SDLogger.cpp
CPPSRC += GPSNmea.cpp ToneGenerator.cpp Repeater.cpp
# List ASM source files here
ASRC = crt.s
# List all user directories here
UINCDIR = ../arm/arm7lib
# List the user directory to look for the libraries here
ULIBDIR = ../arm/arm7lib
# List all user libraries here
ULIBS = ../arm/arm7lib/libarm7lib.a
#-larm7lib
# Define optimisation level here (set to -O0 for debugging)
OPT = -O0 # O2
#
# End of user defines
##########################################################################
INCDIR = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR))
LIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))
DEFS = $(DDEFS) $(UDEFS)
ADEFS = $(DADEFS) $(UADEFS)
OBJS = $(ASRC:.s=.o) $(CSRC:.c=.o) $(CPPSRC:.cpp=.o)
LIBS = $(ULIBS) $(DLIBS)
MCFLAGS = -mcpu=$(MCU)
ASFLAGS = $(MCFLAGS) -g -gdwarf-2 -Wa,-amhls=$(<:.s=.lst) $(ADEFS)
CPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -fomit-frame-pointer -ffunction-sections -Wall -Wstrict-prototypes -fverbose-asm -Wa,-ahlms=$(<:.c=.lst) $(DEFS)
CPPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -fno-rtti -fno-exceptions -fomit-frame-pointer -ffunction-sections -Wall -fverbose-asm -Wa,-ahlms=$(<:.cpp=.lst) $(DEFS)
LDFLAGS = $(MCFLAGS) -T$(LDSCRIPT) -Wl,-Map=$(PROJECT).map,--cref,--gc-sections,--no-warn-mismatch $(LIBDIR)
# -nostartfiles -t
# Generate dependency information
CPFLAGS += -MD -MP -MF .dep/$(@F).d
CPPFLAGS += -MD -MP -MF .dep/$(@F).d
# Make git version info available by defining __GIT_VERSION
CPPFLAGS += -D__GIT_VERSION=\"$(GIT_VERSION)\"
##########################################################################
# Start of makefile rules
#
all: $(OBJS) $(PROJECT).elf $(PROJECT).bin $(PROJECT).hex
%o : %c
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
%o : %cpp
$(CPP) -c $(CPPFLAGS) -I . $(INCDIR) $< -o $@
%o : %s
$(AS) -c $(ASFLAGS) $< -o $@
%elf: $(OBJS)
$(CPP) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
%bin: %elf
$(BIN) $< $@
%hex: %elf
$(HEX) $< $@
$(SIZE) $<
docs:
doxygen FlightComputer.dox
clean:
-rm -f $(OBJS)
-rm -f $(PROJECT).elf
-rm -f $(PROJECT).bin
-rm -f $(PROJECT).map
-rm -f $(PROJECT).hex
-rm -f $(CSRC:.c=.lst)
-rm -f $(CPPSRC:.cpp=.lst)
-rm -f $(ASRC:.s=.lst)
-rm -fR .dep
-rm -fR html
install:
openocd -f lpc21xx_ocd.cfg -c "script lpc21xx_flash.script"
reset:
openocd -f lpc21xx_ocd.cfg -c reset
debug:
openocd-ftd2xx -f usbscarab.cfg
#
# Include the dependency files, should be the last of the makefile
#
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
#
# End of makefile rules
##########################################################################