mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
57cc002c67
Conflicts: core/include/queue.h core/queue.c cpu/msp430-common/hwtimer_cpu.c cpu/msp430x16x/hwtimer_msp430.c sys/lib/hashtable.c sys/net/ieee802154/ieee802154_frame.c sys/shell/commands/sc_cc110x_ng.c sys/transceiver/transceiver.c sys/vtimer/vtimer.c
26 lines
590 B
Makefile
26 lines
590 B
Makefile
INCLUDES = -I$(RIOTBASE)/sys/include -I../../net -I../include -I../../lib -I../../../.. -I../../../cpu/ -I$(RIOTBASE)/core/include -I../../ -Iinclude/
|
|
MODULE =cc110x_ng
|
|
|
|
DIRS =
|
|
ifneq (,$(findstring msb-430h,$(BOARD)))
|
|
DIRS += spi
|
|
endif
|
|
ifneq (,$(findstring msba2,$(BOARD)))
|
|
DIRS += spi
|
|
endif
|
|
ifneq (,$(findstring wsn430-v1_3b,$(BOARD)))
|
|
DIRS += spi
|
|
endif
|
|
ifneq (,$(findstring native,$(BOARD)))
|
|
DIRS += spi
|
|
endif
|
|
|
|
all: $(BINDIR)$(MODULE).a
|
|
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
clean::
|
|
@for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
|
|
|