mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
300d6b3e35
Closes #993. We do not need to descend into the modules to know what to do on `make clean BOARD=blub`. We can just invoke `rm -rf bin/blub`. This PR only keeps the descending into the USEPKGs, since they might want to delete cached/downloaded/extracted data.
23 lines
457 B
Makefile
23 lines
457 B
Makefile
MODULE =cpu
|
|
|
|
include $(RIOTCPU)/$(CPU)/Makefile.include
|
|
|
|
DIRS = $(RIOTCPU)/arm_common $(RIOTCPU)/lpc_common
|
|
ifneq (,$(filter gpioint,$(USEMODULE)))
|
|
DIRS += gpioint
|
|
endif
|
|
ifneq (,$(filter mci,$(USEMODULE)))
|
|
DIRS += mci
|
|
endif
|
|
ifneq (,$(filter rtc,$(USEMODULE)))
|
|
DIRS += rtc
|
|
endif
|
|
ifneq (,$(filter i2c,$(USEMODULE)))
|
|
DIRS += i2c
|
|
endif
|
|
|
|
all: $(BINDIR)$(MODULE).a
|
|
@for i in $(DIRS) ; do "$(MAKE)" -C $$i || exit 1; done ;
|
|
|
|
include $(RIOTBASE)/Makefile.base
|