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

21 lines
384 B
Makefile
Raw Normal View History

MODULE =cc110x_ng
DIRS =
2013-02-15 22:17:42 +01:00
ifneq (,$(findstring msb-430h,$(BOARD)))
DIRS += spi
2013-02-15 22:17:42 +01:00
endif
ifneq (,$(findstring msba2,$(BOARD)))
DIRS += spi
endif
ifneq (,$(findstring wsn430-v1_3b,$(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 ;