Update the Makefile

This commit is contained in:
Maschell 2020-07-01 13:18:27 +02:00
parent 10db6e943a
commit 142c4e75bb
1 changed files with 5 additions and 0 deletions

View File

@ -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 $<)