X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=Makefile;h=cd1e6e7a13e9ce21972a5bb6808e6684447bc6f0;hb=2d56e369dbc033f743dfcc0b392c844d6299937b;hp=2b3202befd1436a24cde10549e21afab2b1f7207;hpb=9b734560ce02e626f7ea58ea9153b5e8daa00831;p=hvlinux.git diff --git a/Makefile b/Makefile index 2b3202b..cd1e6e7 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,9 @@ RUN_MODE := $(shell . functions/version && check_hvlinux_version) ifeq ($(RUN_MODE),HOST) - STAGES := "0 1" + STAGES := 0 1 else ifeq ($(RUN_MODE),NATIVE) - STAGES := "2 3 4 5" + STAGES := 2 3 4 5 else $(error Unable to determine run mode.) endif @@ -27,9 +27,8 @@ ifeq ($(MAKECMDGOALS),test) endif all: - @echo "Stages: $(STAGES)" @for k in $(STAGES); do \ - make -C stage$${k} $(MAKECMDGOALS); \ + make -C stage$${k} $(MAKECMDGOALS) || exit 1; \ done $(MAKECMDGOALS): all