diff options
author | Marty Connor <mdc@etherboot.org> | 2007-12-28 14:33:11 -0500 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2007-12-28 14:33:11 -0500 |
commit | af56768e98559ef0766e51c8e7a9eca1567720a9 (patch) | |
tree | 4b9e14f12b1b495962ad7c3dd8a4157ef7393799 | |
parent | 9d4e4dbc32e52213de685951590254fe9e7c308a (diff) | |
download | ipxe-af56768e98559ef0766e51c8e7a9eca1567720a9.tar.gz |
Retain some intermediate object files, suggested by Geert Stappers and Alexey Zaytsev.
src/bin/%.tmp files can be useful for debugging, so let's keep them.
-rw-r--r-- | src/Makefile.housekeeping | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 1e97ee62..a5bb9a4b 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -356,6 +356,9 @@ $(BIN)/%.tmp : $(BLIB) $(MAKEDEPS) $(LDSCRIPT) -Map $(BIN)/$*.tmp.map $(Q)$(OBJDUMP) -ht $@ | $(SORTOBJDUMP) >> $(BIN)/$*.tmp.map +# Keep intermediate object file (useful for debugging) +.PRECIOUS : $(BIN)/%.tmp + # Show a linker map for the specified target # $(BIN)/%.map : $(BIN)/%.tmp |