commit | ea80a25e812520ebcaa437aec90ac2b9791df4b2 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Sat Feb 20 17:29:23 2016 +0100 |
committer | Richard Levitte <levitte@openssl.org> | Sun Feb 21 00:33:54 2016 +0100 |
tree | ede9762c8dc8ab39fcc4603abca5f6e10a7fef9c | |
parent | dca97e9bfdfbb62b9a4f664ee901a826bc338ad7 [diff] |
Avoid GNU make re-exec when adding dependencies to Makefile GNU make will re-exec if (it thinks that) the Makefile has changed. Just having the target Makefile seems to make it think it has, so we end up in a look where GNU make re-execs for ever. The fix is easy, just remove the Makefile target and have the depend target run the recipe on its own instead of depending on Makefile. Reviewed-by: Rich Salz <rsalz@openssl.org>