# This is the Makefile for tiny-utils, a set of small footprint utilities for
# Linux and ELKS.

all: sh-utils

sh-utils: dummy
	for file in */Makefile ; do \
		make -C `dirname $$file` $@ || exit 1 ; \
	done

clean: dummy
	for file in */Makefile ; do \
		make -C `dirname $$file` $@ || exit 1 ; \
	done
	rm -f bin/* *~
dummy: