Change several makefile prints

Silence some, fix newline to others.
This commit is contained in:
CTCaer
2025-04-30 09:24:42 +03:00
parent 466beedb28
commit 75bac23d01
3 changed files with 10 additions and 11 deletions

View File

@@ -46,7 +46,7 @@ clean:
@rm -rf $(OBJS)
$(TARGET).bin: $(BUILDDIR)/$(TARGET)/$(TARGET).elf
$(OBJCOPY) -S -O binary $< $(OUTPUTDIR)/$(PAYLOAD_NAME).bin
@$(OBJCOPY) -S -O binary $< $(OUTPUTDIR)/$(PAYLOAD_NAME).bin
$(BUILDDIR)/$(TARGET)/$(TARGET).elf: $(OBJS)
@$(CC) $(LDFLAGS) -T link.ld $^ -o $@