Fix hardcoded reference to nm(1)

ico
Ilya Dmitrichenko 2012-07-11 00:02:59 +01:00 committed by Ilya Dmitrichenko
parent 9f6689e538
commit 6690c5f13e
1 changed files with 2 additions and 2 deletions

View File

@ -228,10 +228,10 @@ ifndef CUSTOM_RULE_LINK
endif
%.ramprof: %.$(TARGET)
nm -S -td --size-sort $< | grep -i " [abdrw] " | cut -d' ' -f2,4
$(NM) -S -td --size-sort $< | grep -i " [abdrw] " | cut -d' ' -f2,4
%.flashprof: %.$(TARGET)
nm -S -td --size-sort $< | grep -i " [t] " | cut -d' ' -f2,4
$(NM) -S -td --size-sort $< | grep -i " [t] " | cut -d' ' -f2,4
# Don't treat %.$(TARGET) as an intermediate file because it is
# in fact the primary target.