diff options
author | John Hodge <tpg@mutabah.net> | 2017-02-04 21:32:52 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-02-04 21:32:52 +0800 |
commit | b577379daf649d5e08d1198e756a141cac1524e9 (patch) | |
tree | aedc2476875d7cc5ffb31f32838c1ee1e990fb38 | |
parent | abeea0472605262dc35fe9e1bf295f5b0e058ad6 (diff) | |
download | mrust-b577379daf649d5e08d1198e756a141cac1524e9.tar.gz |
Makefile - (minor) Disable deletion of test intermediate targets
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -19,8 +19,10 @@ TARGET_CC ?= clang TAIL_COUNT ?= 45 +# - Disable implicit rules .SUFFIXES: -.PRECIOUS: % +# - Disable deleting intermediate files +.SECONDARY: # - Final stage for tests run as part of the rust_tests target. # VALID OPTIONS: parse, expand, mir, ALL |