From b3a0b39d06af1bcc46c4568a456a14597ed2b303 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Tue, 4 Oct 2022 19:34:27 +0300 Subject: [PATCH] fix: add binaries to .PRECIOUS rule --- scripts/common.mak | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/common.mak b/scripts/common.mak index 72ae2df..aa84cb6 100644 --- a/scripts/common.mak +++ b/scripts/common.mak @@ -34,6 +34,7 @@ binaries = $(patsubst $(src)/%.cc,$(bin)/%.o,$(call sources,$1)) flags += "-I$(inc)" -D$(OS) -DPPC_VERSION_MAJOR=$(version-major) -DPPC_VERSION_MINOR=$(version-minor) -DPPC_VERSION_BUILD=$(version-build) .PHONY: build +.PRECIOUS: $(bin)/%.o build: $(binary)