Skip to content

Commit

Permalink
fix make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
whentojump committed Mar 15, 2024
1 parent 576dc5c commit edba3a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ lib:

clean:
(cd acto/k8s_util/lib && make clean)
(cd ssa && make)
(cd ssa && make clean)
4 changes: 2 additions & 2 deletions acto/k8s_util/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ k8sutil:
gcc test.c -o test ./k8sutil.so

clean:
rm ./k8sutil.so
rm ./test
rm -f ./k8sutil.so
rm -f ./test
2 changes: 1 addition & 1 deletion ssa/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ analysis:
go build -buildmode=c-shared -o libanalysis.so ssa.go

clean:
rm ./analysis.so
rm -f ./analysis.so

0 comments on commit edba3a7

Please sign in to comment.