# HG changeset patch # User nenolod # Date 1138920446 28800 # Node ID f34898e3333acedcfa4b164ab5dcf7c8e2850275 # Parent 2ed2993cd920e8273f36df09e185a6d032772e51 [svn] Announce when we're building a library or binary objective, not just a component objective. diff -r 2ed2993cd920 -r f34898e3333a mk/objective.mk --- a/mk/objective.mk Thu Feb 02 14:43:34 2006 -0800 +++ b/mk/objective.mk Thu Feb 02 14:47:26 2006 -0800 @@ -33,6 +33,7 @@ done; \ fi $(MAKE) clean-posthook + $(RM) *.o *.lo *.so *.a *.sl @echo "[all objectives cleaned]" distclean: clean @@ -47,9 +48,11 @@ done; \ fi @for i in $(OBJECTIVE_LIBS); do \ + echo "[building library objective: $$i]"; \ $(MAKE) $$i; \ done @for i in $(OBJECTIVE_BINS); do \ + echo "[building binary objective: $$i]"; \ $(MAKE) $$i; \ done $(MAKE) build-posthook