From 571a8aabcde6999eb869fb6c82e0f79194deb275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Sat, 17 Feb 2024 17:57:43 +0500 Subject: [PATCH] Add '@' before mkdir in Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4ae01bb..f37027c 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ KOTLINFLAGS = -cp $(HEADERS) -d $(OUT_DIR) -jvm-target 1.8 all: translate $(CLS): $(OUT_DIR)/%.class: $(SRC_DIR)/%.kt - mkdir -p build + @mkdir -p build $(KOTLINC) $(KOTLINFLAGS) $< rm -rf build/META-INF/