From 364c8d9df87a848af8d0e49583754d2b351cf148 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 16 Apr 2024 11:12:44 +0000 Subject: [PATCH] Fix Makefile `clean` command for delete non-exist files git-svn-id: file:///raid/svn-main/kazu-ksynth/trunk@23 7b47e76f-e598-2f43-bc14-414d160cc389 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa180eb..3cddea5 100644 --- a/Makefile +++ b/Makefile @@ -57,4 +57,4 @@ format: clang-format -i `find . -name "*.h" -or -name "*.c"` clean: - rm -f out/ksynth_*.so out/ksynth_*.dll $(OBJS) + rm -f out/libksynth_*.so out/libksynth_*.a out/ksynth_*.dll $(OBJS) -- 2.43.0