From 595a8da5e173f9a629e87772b39f5f96f5024881 Mon Sep 17 00:00:00 2001 From: Stephanie Gawroriski Date: Fri, 24 Nov 2023 22:22:25 +0000 Subject: [PATCH] Correct Makefile to include the host executable suffix. --- nanocoat/cmake/utils/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanocoat/cmake/utils/Makefile b/nanocoat/cmake/utils/Makefile index cff779aea8..afd21c0bd8 100644 --- a/nanocoat/cmake/utils/Makefile +++ b/nanocoat/cmake/utils/Makefile @@ -13,5 +13,5 @@ HOST_EXE_SUFFIX ?= decode${HOST_EXE_SUFFIX}: decode.c $(CC) -o "${OUTPUT_DIR}/$@" $< -all: decode +all: decode${HOST_EXE_SUFFIX} -- 2.11.4.GIT