Don't print out full object file paths in the build system when cleaning object files.

pull/1469/head
Dean Camera 12 years ago
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…
Cancel
Save