blob: 064e5a232ee663076aec4df2ac630f03f730176d [file] [log] [blame]
# progs/Makefile
TOP = ..
include $(TOP)/configs/current
SUBDIRS ="$(PROGRAM_DIRS)"
default: message subdirs
message:
@echo "Making programs for" $(CONFIG_NAME)
subdirs:
@if test -n "$(SUBDIRS)" ; then \
for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE)) || exit 1 ; \
fi \
done \
fi
# Dummy install target
install:
clean:
-@if test -n "$(SUBDIRS)" ; then \
for dir in $(SUBDIRS) tests ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE) clean) ; \
fi \
done \
fi