# SPDX-License-Identifier: CC0-1.0 # # SPDX-FileContributor: Antonio Niño Díaz, 2023 .PHONY: all clean MAKE := make all: @for i in `ls`; do \ if test -e $$i/Makefile.blocksds ; then \ $(MAKE) -C $$i -f Makefile.blocksds --no-print-directory || { exit 1;} \ fi; \ done; @rm -fr build-all @mkdir -p build-all @find . -name "*.nds" -not -path build-all -exec cp -fv {} build-all \; clean: @for i in `ls`; do \ if test -e $$i/Makefile.blocksds ; then \ $(MAKE) -C $$i -f Makefile.blocksds clean --no-print-directory || { exit 1;} \ fi; \ done; @rm -fr build-all