Mercurial > audlegacy
diff mk/objective.mk @ 568:f34898e3333a trunk
[svn] Announce when we're building a library or binary objective, not just a component objective.
| author | nenolod |
|---|---|
| date | Thu, 02 Feb 2006 14:47:26 -0800 |
| parents | 2ed2993cd920 |
| children | 7c385d45f6c8 |
line wrap: on
line diff
--- 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
