mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
9b61d95545
Add `|| exit 1` to all constructs like `@for i in $(DIRS) ; do "$(MAKE)" -C $$i ; done ;`, so that compilation stops on the first error.
18 lines
363 B
Makefile
18 lines
363 B
Makefile
MODULE =cpu
|
|
|
|
DIRS = $(RIOTCPU)/arm_common
|
|
ifneq (,$(filter mc1322x_adc,$(USEMODULE)))
|
|
DIRS += adc
|
|
endif
|
|
ifneq (,$(filter mc1322x_asm,$(USEMODULE)))
|
|
DIRS += asm
|
|
endif
|
|
|
|
all: $(BINDIR)$(MODULE).a
|
|
@for i in $(DIRS) ; do "$(MAKE)" -C $$i || exit 1; done ;
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
clean::
|
|
@for i in $(DIRS) ; do "$(MAKE)" -C $$i clean || exit 1; done ;
|