From 142c4e75bbbbbe13f3a227e364b452b03b23a4a5 Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 1 Jul 2020 13:18:27 +0200 Subject: [PATCH] Update the Makefile --- relocator/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/relocator/Makefile b/relocator/Makefile index d44ad5b..f8d28fb 100644 --- a/relocator/Makefile +++ b/relocator/Makefile @@ -169,6 +169,11 @@ $(OUTPUT).elf: $(OFILES) @echo $(notdir $<) @$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(ASFLAGS) -c $< -o $@ $(ERROR_FILTER) +#--------------------------------------------------------------------------------- +%.o: %.S + @echo $(notdir $<) + @$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(ASFLAGS) -c $< -o $@ $(ERROR_FILTER) + #--------------------------------------------------------------------------------- %.png.o : %.png @echo $(notdir $<)