From 4fe47748b018bd1d159839fe9e2bb6685a895e85 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Fri, 21 Jan 2011 15:23:15 +0100 Subject: [PATCH] Makefile: improve rules for target "full". Do not build simple_async, and "make -j" should now work correctly. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 127476b..8a6bff4 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,11 @@ TARGETS := $(DEFAULT_TARGETS) \ all: $(DEFAULT_TARGETS) full: - $(MAKE) $(FLAVOURED_LOBA) - $(MAKE) $(TARGETS) + @for target in $(FLAVOURED_LOBA); do \ + echo $(MAKE) "$$target"; \ + $(MAKE) "$$target"; \ + done + $(MAKE) $(DEFAULT_TARGETS) clean: $(RM) core core.[0-9]* vgcore.[0-9]* -- 2.39.5