From 7f3c56d353e0f2c181973bdc713f4c6682986087 Mon Sep 17 00:00:00 2001 From: abenso Date: Mon, 3 Feb 2025 12:17:10 -0300 Subject: [PATCH] minor fixes --- app/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/Makefile b/app/Makefile index 0d59df9..b7b9415 100755 --- a/app/Makefile +++ b/app/Makefile @@ -114,7 +114,8 @@ else CFLAGS += -O3 -Os -Wno-unknown-pragmas -Wno-unused-parameter endif -APP_CUSTOM_LINK_DEPENDENCIES = rust +# make rust a prerequisite for all object files +$(OBJECT_FILES): rust .PHONY: rust rust: @@ -133,10 +134,6 @@ rust_clean: clean: rust_clean - -# make rust a prerequisite for all object files -$(OBJECT_FILES): rust - #add dependency on custom makefile filename dep/%.d: %.c Makefile