From 58b411a5fe5345b3f3ad1d2d4c20d909b0ffbfa1 Mon Sep 17 00:00:00 2001 From: Tom Vijlbrief Date: Mon, 9 Oct 2017 15:11:14 +0200 Subject: [PATCH] fix makefile for multiple source files --- components/ulp/component_ulp_common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ulp/component_ulp_common.mk b/components/ulp/component_ulp_common.mk index 8824a6dd09..70e5b0205b 100644 --- a/components/ulp/component_ulp_common.mk +++ b/components/ulp/component_ulp_common.mk @@ -43,7 +43,7 @@ $(ULP_LD_SCRIPT): $(ULP_LD_TEMPLATE) # Link object files and generate map file $(ULP_ELF): $(ULP_OBJECTS) $(ULP_LD_SCRIPT) $(summary) ULP_LD $(patsubst $(PWD)/%,%,$(CURDIR))/$@ - $(ULP_LD) -o $@ -A elf32-esp32ulp -Map=$(ULP_MAP) -T $(ULP_LD_SCRIPT) $< + $(ULP_LD) -o $@ -A elf32-esp32ulp -Map=$(ULP_MAP) -T $(ULP_LD_SCRIPT) $(ULP_OBJECTS) # Dump the list of global symbols in a convenient format. $(ULP_SYM): $(ULP_ELF)