forked from mfulz_github/qmk_firmware
Don't print out full object file paths in the build system when cleaning object files.
This commit is contained in:
parent
79ee9e755f
commit
276eb35d68
|
@ -202,7 +202,7 @@ lss: $(TARGET).lss
|
|||
$(CROSS)objdump -h -S -z $< > $@
|
||||
|
||||
clean:
|
||||
@echo $(MSG_REMOVE_CMD) Removing object files \"$(OBJECT_FILES)\"
|
||||
@echo $(MSG_REMOVE_CMD) Removing object files \"$(notdir $(OBJECT_FILES))\"
|
||||
rm -f $(OBJECT_FILES)
|
||||
@echo $(MSG_REMOVE_CMD) Removing output files \"$(TARGET).elf $(TARGET).hex $(TARGET).eep $(TARGET).map $(TARGET).lss\"
|
||||
rm -f $(TARGET).elf $(TARGET).hex $(TARGET).eep $(TARGET).map $(TARGET).lss
|
||||
|
|
Loading…
Reference in New Issue