1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/wsn430-common/Makefile.include

26 lines
752 B
Makefile
Raw Normal View History

2013-05-25 12:34:18 +02:00
## the cpu to build for
export CPU = msp430fxyz
2013-05-25 12:34:18 +02:00
export MCU = msp430f1611
# toolchain config
export PREFIX = msp430-
export CC = $(PREFIX)gcc
export AR = $(PREFIX)ar
export CFLAGS += -Wstrict-prototypes -gdwarf-2 -Os -Wall -mmcu=$(MCU)
2013-05-25 12:34:18 +02:00
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)msp430_common/startup.o
2013-05-25 12:34:18 +02:00
export FLASHER = mspdebug
ifeq ($(strip $(PORT)),)
export PORT = /dev/ttyUSB0
endif
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
2013-12-24 14:50:26 +01:00
export INCLUDES += -I$(RIOTBOARD)/wsn430-common/include
export OFLAGS = -O ihex
export UNDEF += $(BINDIR)msp430_common/startup.o