apparmor/tests/stress/Makefile
Tyler Hicks 19c6c3310b all: Use the MAKE variable
https://www.gnu.org/software/make/manual/html_node/MAKE-Variable.html

We should be using the $(MAKE) variable when calling the make command
from Makefiles since we use Makefile recursion.

Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
2017-11-01 23:22:53 +00:00

7 lines
107 B
Makefile

SUBDIRS=subdomain
.PHONY: clean
clean:
for dir in $(SUBDIRS) ; do \
$(MAKE) clean -C $${dir} ; \
done