mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
9df07f9238
Instead of muting all compiler and other binutils output by default, introduce a variable to make this behaviour configurable.
23 lines
698 B
Makefile
23 lines
698 B
Makefile
export INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
|
|
|
|
## the cpu to build for
|
|
export CPU = cc430
|
|
export MCU = cc430f6137
|
|
|
|
# toolchain config
|
|
export PREFIX = msp430-
|
|
export CC = $(PREFIX)gcc
|
|
export AR = $(PREFIX)ar
|
|
export CFLAGS += -std=gnu99 -Wstrict-prototypes -gdwarf-2 -Os -Wall -mmcu=$(MCU) -D CC430
|
|
export ASFLAGS += -mmcu=$(MCU) --defsym $(MCU)=1 --gdwarf-2
|
|
export AS = $(PREFIX)as
|
|
export LINK = $(PREFIX)gcc
|
|
export SIZE = $(PREFIX)size
|
|
export OBJCOPY = $(PREFIX)objcopy
|
|
export LINKFLAGS = -mmcu=$(MCU) -lgcc $(BINDIR)startup.o
|
|
export FLASHER = mspdebug
|
|
export HEXFILE = $(BINDIR)$(PROJECT).hex
|
|
export USEMODULE += msp430_common
|
|
export FFLAGS = rf2500 "prog $(HEXFILE)"
|
|
export OFLAGS = -O ihex
|