summaryrefslogtreecommitdiff
path: root/progs/Makefile
diff options
context:
space:
mode:
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 d6b0477a43..858d628c0a 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 ; \