From 1700a9bf20cd29dde7ae407f825177663a28ab2c Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 4 Apr 2016 19:39:00 +0300 Subject: [PATCH] build: criu -- Don't forget to cleanup arch directory Signed-off-by: Cyrill Gorcunov Reviewed-by: Dmitry Safonov Signed-off-by: Pavel Emelyanov --- criu/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/criu/Makefile b/criu/Makefile index 0380295a9..3486d19d9 100644 --- a/criu/Makefile +++ b/criu/Makefile @@ -192,6 +192,7 @@ subclean: # Clean the most, except generated c files clean: subclean $(Q) $(MAKE) $(call build-as,Makefile.syscalls,$(ARCH_DIR)) $@ + $(Q) $(MAKE) $(call build-as,Makefile,$(ARCH_DIR)) $@ $(Q) $(MAKE) $(call build-as,Makefile.library,pie) $@ $(Q) $(MAKE) $(call build-as,Makefile.crtools,.) $@ $(Q) $(MAKE) $(build)=pie/piegen $@ @@ -202,6 +203,7 @@ clean: subclean # Delete all generated files mrproper: subclean $(Q) $(MAKE) $(call build-as,Makefile.syscalls,$(ARCH_DIR)) $@ + $(Q) $(MAKE) $(call build-as,Makefile,$(ARCH_DIR)) $@ $(Q) $(MAKE) $(call build-as,Makefile.library,pie) $@ $(Q) $(MAKE) $(call build-as,Makefile.crtools,.) $@ $(Q) $(MAKE) $(build)=pie/piegen $@