From 2a564c4f4b8113b79810585b3deffeff5d489004 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 20 Mar 2018 11:23:08 +0000 Subject: [PATCH] build: Add a clean rule Add missing `clean` rule. Signed-off-by: James O. D. Hunt --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index a38fe4af70..06b29fdd78 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ runtime: install: make -C cli install +clean: + make -C cli clean + help: @printf "To build a Kata Containers runtime:\n" @printf "\n"