summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNicolas Schodet2012-11-05 00:15:40 +0100
committerNicolas Schodet2019-10-06 23:29:59 +0200
commitf5bc66aaabe2ac3bc51248f49dacc6b41808ce0b (patch)
treeec1e28823249a3a9e96f6681776951377089006f /build
parent1b91d3407a1bbbcd72a7b6492a88600dea1d8a8c (diff)
build: default to build lst file
Also change LST command message.
Diffstat (limited to 'build')
-rw-r--r--build/arch.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/arch.mk b/build/arch.mk
index 75b9eaa..9daaf82 100644
--- a/build/arch.mk
+++ b/build/arch.mk
@@ -65,13 +65,14 @@ endef
define arch_lst_rules
lst: lst.$1
+all.$1: lst.$1
.PHONY: lst.$1
lst.$1: $$($1_PROGS:%=%.$1.lst)
%.$1.lst: %.$1.elf
- @echo "LST [$1] $$<"
+ @echo "LST [$1] $$@"
$$Q$$($1_OBJDUMP) -h -S $$< > $$@
$1_EXTRA_CLEAN += $$($1_PROGS:%=%.$1.lst)