diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 13:00:22 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 13:00:22 +0000 |
| commit | 370a4cae8a5a2e3a13c3e57880b2ff9481bb6207 (patch) | |
| tree | 8c6b26b3255e565e2093f4c054d1ee87fa4a96cb /LUFA/Build | |
| parent | 9b8e528a47bc9eb6177efd472dc9f3c0b45273f3 (diff) | |
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.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2278 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Build')
| -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 067b0773..e76f5c3f 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
|
