diff options
author | 2020-12-25 10:50:08 +0000 | |
---|---|---|
committer | 2020-12-25 10:50:08 +0000 | |
commit | 2878bee356901993a0493fb90ad3f58e5a482f11 (patch) | |
tree | 0fb34dbafc876b217aaa5a05662bac293b0c4f6d | |
parent | Fix test after change of wmesg. (diff) | |
download | wireguard-openbsd-2878bee356901993a0493fb90ad3f58e5a482f11.tar.xz wireguard-openbsd-2878bee356901993a0493fb90ad3f58e5a482f11.zip |
Add to *FLAGS and *ADD rather than overwriting them
This makes CFLAGS pick up -O2, which shaves a few seconds runtime
off these very slow tests.
-rw-r--r-- | regress/lib/libssl/interop/libressl/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/regress/lib/libssl/interop/libressl/Makefile b/regress/lib/libssl/interop/libressl/Makefile index 78e995abef6..d8e20ca1229 100644 --- a/regress/lib/libssl/interop/libressl/Makefile +++ b/regress/lib/libssl/interop/libressl/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.8 2020/12/17 00:51:11 bluhm Exp $ +# $OpenBSD: Makefile,v 1.9 2020/12/25 10:50:08 tb Exp $ PROGS = client server -CFLAGS = -DLIBRESSL_HAS_TLS1_3 -CPPFLAGS = -LDFLAGS = -LDADD = -lssl -lcrypto -DPADD = ${LIBSSL} ${LIBCRYPTO} +CFLAGS += -DLIBRESSL_HAS_TLS1_3 +CPPFLAGS += +LDFLAGS += +LDADD += -lssl -lcrypto +DPADD += ${LIBSSL} ${LIBCRYPTO} LD_LIBRARY_PATH = REGRESS_TARGETS = run-self-client-server .for p in ${PROGS} |