[make] remove line numbers from the non-debug .lst file

Turns out it's just a little too noisy for me for normal bringup. That's
what .debug.lst is for.
This commit is contained in:
Travis Geiselbrecht
2025-10-04 14:06:36 -07:00
parent e0b5008641
commit 34310ae0ca

View File

@@ -42,7 +42,7 @@ $(OUTELF).sym.sorted: $(OUTELF)
$(OUTELF).lst: $(OUTELF) $(OUTELF).lst: $(OUTELF)
$(info generating listing: $@) $(info generating listing: $@)
$(NOECHO)$(OBJDUMP) $(ARCH_OBJDUMP_FLAGS) -l -d $< | $(CPPFILT) > $@ $(NOECHO)$(OBJDUMP) $(ARCH_OBJDUMP_FLAGS) -d $< | $(CPPFILT) > $@
$(NOECHO)echo "# vim: ts=8 nolist nowrap" >> $@ $(NOECHO)echo "# vim: ts=8 nolist nowrap" >> $@
$(OUTELF).debug.lst: $(OUTELF) $(OUTELF).debug.lst: $(OUTELF)