Subversion Repositories chibiosIgnition

Rev

Rev 11 | Rev 15 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 13
Line 197... Line 197...
197
CP   = $(TRGT)objcopy
197
CP   = $(TRGT)objcopy
198
AS   = $(TRGT)gcc -x assembler-with-cpp
198
AS   = $(TRGT)gcc -x assembler-with-cpp
199
OD   = $(TRGT)objdump
199
OD   = $(TRGT)objdump
200
HEX  = $(CP) -O ihex
200
HEX  = $(CP) -O ihex
201
BIN  = $(CP) -O binary
201
BIN  = $(CP) -O binary
-
 
202
SZ   = touch
202
 
203
 
203
# ARM-specific options here
204
# ARM-specific options here
204
AOPT =
205
AOPT =
205
 
206
 
206
# THUMB-specific options here
207
# THUMB-specific options here
Line 272... Line 273...
272
 
273
 
273
##############################################################################
274
##############################################################################
274
 
275
 
275
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC
276
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC
276
include $(RULESPATH)/rules.mk
277
include $(RULESPATH)/rules.mk
-
 
278