diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 13:00:22 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 13:00:22 +0000 |
commit | e24993c13aa30115b5ef5e4877dbb610efd9626e (patch) | |
tree | 8c6b26b3255e565e2093f4c054d1ee87fa4a96cb /LUFA | |
parent | fcf0b8a5bb27eacb9de54ca4f85d63872562e380 (diff) | |
download | lufa-e24993c13aa30115b5ef5e4877dbb610efd9626e.tar.gz lufa-e24993c13aa30115b5ef5e4877dbb610efd9626e.tar.bz2 lufa-e24993c13aa30115b5ef5e4877dbb610efd9626e.zip |
Ensure build tests use the system provided $(MAKE) variable to determine the command to invoke make, rather than a hard-coded name. Strip off excess whitespace from the list of object files when printing them out to the shell in the build system BUILD module.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Build/lufa.build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in index 067b07736..e76f5c3f9 100644 --- a/LUFA/Build/lufa.build.in +++ b/LUFA/Build/lufa.build.in @@ -190,7 +190,7 @@ lss: $(TARGET).lss $(CROSS)objdump -h -S -z $< > $@
clean:
- @echo $(MSG_REMOVE_CMD) Removing object files \"$(notdir $(OBJECT_FILES))\"
+ @echo $(MSG_REMOVE_CMD) Removing object files \"$(strip $(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
|