# progs/Makefile TOP = .. include $(TOP)/configs/current SUBDIRS = "$(strip "$(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