mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
384 B
Makefile
21 lines
384 B
Makefile
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
|
|
|
|
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 ;
|