diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 12:38:36 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 12:38:36 +0000 |
commit | fcf0b8a5bb27eacb9de54ca4f85d63872562e380 (patch) | |
tree | 39b045f9e067ab8c88d07b16e614ebb00bb7a2e4 | |
parent | 59ca4ec0ec2376c3e94793ccb43487ecd036e1e7 (diff) | |
download | lufa-fcf0b8a5bb27eacb9de54ca4f85d63872562e380.tar.gz lufa-fcf0b8a5bb27eacb9de54ca4f85d63872562e380.tar.bz2 lufa-fcf0b8a5bb27eacb9de54ca4f85d63872562e380.zip |
Ensure the BULD build system module produces a LSS listing file output when the "all" target is invoked.
-rw-r--r-- | LUFA/Build/lufa.build.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in index 4207f1707..067b07736 100644 --- a/LUFA/Build/lufa.build.in +++ b/LUFA/Build/lufa.build.in @@ -153,8 +153,8 @@ size: avr-size $(SIZE_MCU_FLAG) $(SIZE_FORMAT_FLAG) $(TARGET).elf ; 2>/dev/null; \
fi
-.PHONY: begin hex lss end size
-all: begin hex end size
+.PHONY: begin elf hex lss size end
+all: begin elf hex lss size end
elf: $(TARGET).elf
hex: $(TARGET).hex $(TARGET).eep
|