fix to allow projects to extend the linker flags

This commit is contained in:
nifi 2006-06-22 14:24:49 +00:00
parent 05f6bb5feb
commit c649818fe5
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile.msp430,v 1.1 2006/06/17 22:41:21 adamdunkels Exp $
# $Id: Makefile.msp430,v 1.2 2006/06/22 14:24:49 nifi Exp $
### Check if we are running under Windows
@ -48,7 +48,7 @@ CFLAGSNO = -I. -I$(CONTIKI)/core -I$(CONTIKI_CPU) \
-DWITH_UIP -DWITH_ASCII \
-Wall -mmcu=$(MCU) -g
CFLAGS += $(CFLAGSNO) -Os
LDFLAGS = -mmcu=$(MCU) -Wl,-Map=contiki-$(TARGET).map
LDFLAGS += -mmcu=$(MCU) -Wl,-Map=contiki-$(TARGET).map
PROJECT_OBJECTFILES += ${addprefix $(OBJECTDIR)/,$(CONTIKI_TARGET_MAIN:.c=.o)}