From edba3a700c2c0a23943804560d5784fb32249604 Mon Sep 17 00:00:00 2001 From: Wentao Zhang Date: Thu, 14 Mar 2024 23:32:48 -0400 Subject: [PATCH] fix make clean --- Makefile | 2 +- acto/k8s_util/lib/Makefile | 4 ++-- ssa/Makefile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 31f987b8d7..8dc5a69cd8 100644 --- a/Makefile +++ b/Makefile @@ -4,4 +4,4 @@ lib: clean: (cd acto/k8s_util/lib && make clean) - (cd ssa && make) \ No newline at end of file + (cd ssa && make clean) diff --git a/acto/k8s_util/lib/Makefile b/acto/k8s_util/lib/Makefile index 0244bb462d..ecf1efc6d0 100644 --- a/acto/k8s_util/lib/Makefile +++ b/acto/k8s_util/lib/Makefile @@ -3,5 +3,5 @@ k8sutil: gcc test.c -o test ./k8sutil.so clean: - rm ./k8sutil.so - rm ./test \ No newline at end of file + rm -f ./k8sutil.so + rm -f ./test diff --git a/ssa/Makefile b/ssa/Makefile index 19bdcc7e47..72b9566b42 100644 --- a/ssa/Makefile +++ b/ssa/Makefile @@ -4,4 +4,4 @@ analysis: go build -buildmode=c-shared -o libanalysis.so ssa.go clean: - rm ./analysis.so \ No newline at end of file + rm -f ./analysis.so