From 3ba0c6afd76fffe249f5d076d9f631a6e6d4fe36 Mon Sep 17 00:00:00 2001 From: Zihao Yu Date: Fri, 3 Nov 2023 16:06:19 +0800 Subject: [PATCH] Makefile: remove redundant library dependency --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3a5d60a..881d10d 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ $(LIBS): %: @$(MAKE) -s -C $(AM_HOME)/$* archive ### Rule (link): objects (`*.o`) and libraries (`*.a`) -> `IMAGE.elf`, the final ELF binary to be packed into image (ld) -$(IMAGE).elf: $(OBJS) am $(LIBS) +$(IMAGE).elf: $(OBJS) $(LIBS) @echo + LD "->" $(IMAGE_REL).elf @$(LD) $(LDFLAGS) -o $(IMAGE).elf --start-group $(LINKAGE) --end-group @@ -146,7 +146,7 @@ $(ARCHIVE): $(OBJS) ### Build order control image: image-dep archive: $(ARCHIVE) -image-dep: $(OBJS) am $(LIBS) +image-dep: $(OBJS) $(LIBS) @echo \# Creating image [$(ARCH)] .PHONY: image image-dep archive run $(LIBS)