From 7bfaaee4e0b101e1c98e4d10534bb7a92ee11c09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 13 Mar 2019 18:14:57 +0900 Subject: [PATCH] Make clean and distclean for external handling (#4649) * Make clean and clean_all for external handling make clean: clean only workdir make clean_all: clean workdir and external stamp file Signed-off-by: Hyeongseok Oh * change command clean_all to distclean --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c4ff4d1..9fd12d6 100644 --- a/Makefile +++ b/Makefile @@ -109,6 +109,9 @@ install: $(TIMESTAMP_INSTALL) clean: rm -rf $(WORKDIR) + +distclean: + rm -rf $(WORKDIR) rm -rf externals/*.stamp runtime: runtime_build_internal -- 2.7.4