From c6acfbb916003f91da2f5682f28f6fbe2b03ce8c Mon Sep 17 00:00:00 2001 From: pho4cexa Date: Sun, 5 Feb 2023 00:16:45 -0800 Subject: [PATCH] don't complain if .link file doesn't exist --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b1ab72..f32f780 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ $(DIR_BUILD): mkdir -p $@/ compile: $(DIR_BUILD)/$(BIN) - rm ./$(DIR_BUILD)/$(BIN).link + rm -f ./$(DIR_BUILD)/$(BIN).link @ls -sh $(DIR_BUILD)/$(BIN) @echo "Finished compiling a static binary in $(DIR_BUILD)/$(BIN)!"