1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/drivers/cc110x_ng/Makefile

25 lines
443 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
2013-03-21 17:08:41 +01:00
ifneq (,$(findstring native,$(BOARD)))
DIRS += spi
2013-03-21 17:08:41 +01:00
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 ;