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