diff options
author | yenatch <yenatch@gmail.com> | 2018-01-13 01:30:08 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-01-13 01:30:08 -0500 |
commit | 294c9656bec076e1993375966a725723a931fa33 (patch) | |
tree | 5ce99e394ecd8772b0851bf94a6c7e223aee6431 | |
parent | d1630d481a0ff611fda2d70a100eed5046982cec (diff) |
fix broken build after building without tools
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -43,8 +43,10 @@ SCANINC := tools/scaninc/scaninc PREPROC := tools/preproc/preproc RAMSCRGEN := tools/ramscrgen/ramscrgen -# Clear the default suffixes. +# Clear the default suffixes .SUFFIXES: +# Delete files that weren't built properly +.DELETE_ON_ERROR: # Secondary expansion is required for dependency variables in object rules. .SECONDEXPANSION: |