openrc/mk/subdir.mk

32 lines
674 B
Makefile
Raw Normal View History

# Recursive rules
# Adapted from FreeBSDs bsd.subdir.mk
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
_+_ ?= +
2012-01-22 05:47:42 +05:30
ECHODIR ?= echo
_SUBDIR = @${_+_}for x in ${SUBDIR}; do \
if test -d $$x; then \
${ECHODIR} "===> ${DIRPRFX}$$x (${@:realinstall=install})"; \
cd $$x; \
${MAKE} ${@:realinstall=install} \
DIRPRFX=${DIRPRFX}$$x/ || exit $$?; \
cd ..; \
fi; \
done
all:
${_SUBDIR}
clean:
2008-03-03 18:44:54 +05:30
@if test -n "${CLEANFILES}"; then echo "rm -f ${CLEANFILES}"; rm -f ${CLEANFILES}; fi
${_SUBDIR}
realinstall:
${_SUBDIR}
install: realinstall ${INSTALLAFTER}
2008-03-24 11:40:40 +05:30
check test::
${_SUBDIR}
depend:
${_SUBDIR}
ignore:
2008-03-03 18:34:08 +05:30
${_SUBDIR}