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

Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Ludwig Ortmann 2013-03-12 15:50:04 +01:00
commit 7bf1dd72f8
3 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/******************************************************************************
Copyright 2009, Freie Universitaet Berlin (FUB). All rights reserved.
Copyright 2013, Freie Universitaet Berlin (FUB). All rights reserved.
These sources were developed at the Freie Universitaet Berlin, Computer Systems
and Telematics group (http://cst.mi.fu-berlin.de).
@ -36,10 +36,8 @@ and the mailinglist (subscription via web site)
* @file
* @brief SHT11 Device Driver Configuration For MSB-430 Platform
*
* @author Freie Universität Berlin, Computer Systems & Telematics, µkleos
* @version $Revision$
* @author Freie Universität Berlin, Computer Systems & Telematics, RIOT
*
* @note $Id$
*/
#include <msp430x16x.h>
#include <bitarithm.h>

View File

@ -1,7 +1,6 @@
SRC = $(wildcard *.c)
BINDIR = $(RIOTBOARD)/$(BOARD)/bin/
OBJ = $(SRC:%.c=$(BINDIR)%.o)## defines
DEP = $(SRC:%.c=$(BINDIR)%.d)
INCLUDES += -I$(RIOTBOARD)/msb-430-common/include/
@ -9,10 +8,13 @@ INCLUDES += -I$(RIOTBASE)/cpu/msp430-common/include/
INCLUDES += -I$(RIOTBASE)/cpu/mspx16x/include/
INCLUDES += -I$(RIOTBASE)/drivers/include/
.PHONY: $(BINDIR)$(ARCH)
all: $(BINDIR)$(ARCH)
$(MAKE) -C drivers
$(BINDIR)$(ARCH): $(OBJ)
echo $(AR) rcs $(BINDIR)$(ARCH) $(OBJ)
$(AR) rcs $(BINDIR)$(ARCH) $(OBJ)
# pull in dependency info for *existing* .o files

View File

@ -1,7 +1,6 @@
SRC = $(wildcard *.c)
BINDIR = $(RIOTBOARD)/$(BOARD)/bin/
OBJ = $(SRC:%.c=$(BINDIR)%.o)## defines
DEP = $(SRC:%.c=$(BINDIR)%.d)
INCLUDES += -I$(RIOTBOARD)/msba2-common/include/
@ -9,6 +8,8 @@ INCLUDES += -I$(RIOTBASE)/cpu/arm_common/include/
INCLUDES += -I$(RIOTBASE)/cpu/lpc2387/include/
INCLUDES += -I$(RIOTBASE)/drivers/include/
.PHONY: $(BINDIR)msba2_common_base.a
all: $(BINDIR)msba2_common_base.a
$(MAKE) -C drivers
@ -26,6 +27,6 @@ $(BINDIR)%.o: %.c
# remove compilation products
clean:
make -C drivers clean
${MAKE} -C drivers clean
rm -f $(OBJ) $(DEP)