diff options
author | tb <> | 2019-04-04 21:29:27 +0000 |
---|---|---|
committer | tb <> | 2019-04-04 21:29:27 +0000 |
commit | 31b0313d3e92ca460a9cf5a472703559d449bfe5 (patch) | |
tree | 48f86f17f6b217a62513869f3015151672023303 | |
parent | d61ab6dc79dc9489283d02320a56b12002dce985 (diff) | |
download | openbsd-31b0313d3e92ca460a9cf5a472703559d449bfe5.tar.gz openbsd-31b0313d3e92ca460a9cf5a472703559d449bfe5.tar.bz2 openbsd-31b0313d3e92ca460a9cf5a472703559d449bfe5.zip |
I forgot to mark some targets as .PHONY
-rw-r--r-- | src/regress/lib/libssl/handshake/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/handshake/Makefile b/src/regress/lib/libssl/handshake/Makefile index 6d5e7a64bf..a1ca7f464c 100644 --- a/src/regress/lib/libssl/handshake/Makefile +++ b/src/regress/lib/libssl/handshake/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2019/01/25 01:03:21 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2019/04/04 21:29:27 tb Exp $ |
2 | 2 | ||
3 | PROGS += handshake_table | 3 | PROGS += handshake_table |
4 | PROGS += valid_handshakes_terminate | 4 | PROGS += valid_handshakes_terminate |
@@ -36,6 +36,10 @@ CLEANFILES += handshake.${_FMT} | |||
36 | run-$p: $p | 36 | run-$p: $p |
37 | @echo '\n======== $@ ========' | 37 | @echo '\n======== $@ ========' |
38 | ./$p | 38 | ./$p |
39 | |||
40 | .PHONY: run-$p | ||
39 | .endfor | 41 | .endfor |
40 | 42 | ||
43 | .PHONY: print | ||
44 | |||
41 | .include <bsd.regress.mk> | 45 | .include <bsd.regress.mk> |