summaryrefslogtreecommitdiff
path: root/progs/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-08-25 14:49:41 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-08-25 14:49:41 +0000
commit0ad65543388f7c8048b2040450766bbc3a312a69 (patch)
treee209c005820927a43b1e4c4e8f90cd816441a37e /progs/Makefile
parent3b550e1e3c4d84a24130a50c24b7140c7696656e (diff)
print current config name before building src and progs
Diffstat (limited to 'progs/Makefile')
-rw-r--r--progs/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/progs/Makefile b/progs/Makefile
index d6b0477a43a..858d628c0a5 100644
--- a/progs/Makefile
+++ b/progs/Makefile
@@ -7,7 +7,14 @@ include $(TOP)/configs/current
SUBDIRS = $(PROGRAM_DIRS)
-default: $(TOP)/configs/current
+default: message subdirs
+
+
+message:
+ @echo "Making programs for" $(CONFIG_NAME)
+
+
+subdirs:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir ; $(MAKE)) || exit 1 ; \