mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 01:57:43 +00:00
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>
8 lines
115 B
Makefile
8 lines
115 B
Makefile
SUBDIRS=regression stress
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for dir in $(SUBDIRS) ; do \
|
|
$(MAKE) clean -C $${dir} ; \
|
|
done
|